File tree 4 files changed +7
-4
lines changed
openjdk11-8-cassandra-3.11
openjdk17-8-cassandra-3.11
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pipeline {
55
55
56
56
steps {
57
57
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/" )
59
59
docker. withRegistry(' ' , ' hub.docker.com-springbuildmaster' ) {
60
60
image. push()
61
61
}
Original file line number Diff line number Diff line change 1
1
FROM adoptopenjdk/openjdk11:latest
2
2
3
3
RUN 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 ; \
5
6
curl -LfsSo /tmp/cassandra.tar.gz ${CASSANDRA_URL}; \
6
7
mkdir -p /opt/cassandra /opt/cassandra/data /opt/cassandra/logs; \
7
8
cd /opt/cassandra; \
@@ -11,7 +12,7 @@ RUN set -eux; \
11
12
useradd -d /home/jenkins-docker -m -u 1001 -U jenkins-docker;
12
13
13
14
RUN 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' ; \
15
16
curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
16
17
mkdir -p /opt/java/openjdk8; \
17
18
cd /opt/java/openjdk8; \
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ RUN set -eux; \
11
11
chmod -R a+rwx /opt/cassandra; \
12
12
useradd -d /home/jenkins-docker -m -u 1001 -U jenkins-docker;
13
13
14
+
14
15
RUN set -eux; \
15
16
BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz' ; \
16
17
curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
Original file line number Diff line number Diff line change 1
1
FROM adoptopenjdk/openjdk8:latest
2
2
3
3
RUN 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 ; \
5
6
curl -LfsSo /tmp/cassandra.tar.gz ${CASSANDRA_URL}; \
6
7
mkdir -p /opt/cassandra /opt/cassandra/data /opt/cassandra/logs; \
7
8
cd /opt/cassandra; \
You can’t perform that action at this time.
0 commit comments