File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
openjdk11-8-cassandra-3.11
openjdk17-8-cassandra-3.11 Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pipeline {
5555
5656 steps {
5757 script {
58- def image = docker. build(" springci/spring-data-openjdk17-8-cassandra-3.11" , " ci/openjdk16 -8-cassandra-3.11/" )
58+ def image = docker. build(" springci/spring-data-openjdk17-8-cassandra-3.11" , " ci/openjdk17 -8-cassandra-3.11/" )
5959 docker. withRegistry(' ' , ' hub.docker.com-springbuildmaster' ) {
6060 image. push()
6161 }
Original file line number Diff line number Diff line change 11FROM adoptopenjdk/openjdk11:latest
22
33RUN set -eux; \
4- CASSANDRA_URL='https://www-us.apache.org/dist/cassandra/3.11.10/apache-cassandra-3.11.10-bin.tar.gz' ; \
4+ CASSANDRA_URL='https://archive.apache.org/dist/cassandra/3.11.10/apache-cassandra-3.11.10-bin.tar.gz' ; \
5+ sed -i -e 's/http/https/g' /etc/apt/sources.list ; \
56 curl -LfsSo /tmp/cassandra.tar.gz ${CASSANDRA_URL}; \
67 mkdir -p /opt/cassandra /opt/cassandra/data /opt/cassandra/logs; \
78 cd /opt/cassandra; \
@@ -11,7 +12,7 @@ RUN set -eux; \
1112 useradd -d /home/jenkins-docker -m -u 1001 -U jenkins-docker;
1213
1314RUN set -eux; \
14- BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u275-b01 /OpenJDK8U-jdk_x64_linux_hotspot_8u275b01 .tar.gz' ; \
15+ BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10 /OpenJDK8U-jdk_x64_linux_hotspot_8u292b10 .tar.gz' ; \
1516 curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
1617 mkdir -p /opt/java/openjdk8; \
1718 cd /opt/java/openjdk8; \
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ RUN set -eux; \
1111 chmod -R a+rwx /opt/cassandra; \
1212 useradd -d /home/jenkins-docker -m -u 1001 -U jenkins-docker;
1313
14+
1415RUN set -eux; \
1516 BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz' ; \
1617 curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
Original file line number Diff line number Diff line change 11FROM adoptopenjdk/openjdk8:latest
22
33RUN set -eux; \
4- CASSANDRA_URL='https://www-us.apache.org/dist/cassandra/3.11.10/apache-cassandra-3.11.10-bin.tar.gz' ; \
4+ CASSANDRA_URL='https://archive.apache.org/dist/cassandra/3.11.10/apache-cassandra-3.11.10-bin.tar.gz' ; \
5+ sed -i -e 's/http/https/g' /etc/apt/sources.list ; \
56 curl -LfsSo /tmp/cassandra.tar.gz ${CASSANDRA_URL}; \
67 mkdir -p /opt/cassandra /opt/cassandra/data /opt/cassandra/logs; \
78 cd /opt/cassandra; \
You can’t perform that action at this time.
0 commit comments