Skip to content

Commit

Permalink
Adopt Dockerfile to JDK 22 image changes.
Browse files Browse the repository at this point in the history
Add curl package.

See #1502
  • Loading branch information
mp911de committed Aug 14, 2024
1 parent bd723ea commit 3b59e06
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ci/openjdk21-8-cassandra-3.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ FROM ${BASE}
# Any ARG statements before FROM are cleared.
ARG CASSANDRA

RUN set -eux; \
# sed -i -e 's/http/https/g' /etc/apt/sources.list ; \
apt-get update ; \
apt-get install -y curl; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*;

RUN set -eux; \
CASSANDRA_URL="https://archive.apache.org/dist/cassandra/${CASSANDRA}/apache-cassandra-${CASSANDRA}-bin.tar.gz"; \
sed -i -e 's/http/https/g' /etc/apt/sources.list ; \
Expand Down

0 comments on commit 3b59e06

Please sign in to comment.