Skip to content

Commit a8ffc83

Browse files
committed
Add curl to JDK25 images
The Temurin images no longer preinstall curl as of JDK 22+. See adoptium/containers#814
1 parent f70d8c4 commit a8ffc83

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

9.4-dev/jdk25/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:25-jdk-jammy
22

3-
RUN apt-get update && apt-get install -y libc6-dev make --no-install-recommends && rm -rf /var/lib/apt/lists/*
3+
RUN apt-get update && apt-get install -y libc6-dev make curl --no-install-recommends && rm -rf /var/lib/apt/lists/*
44

55
ENV JRUBY_VERSION=9.4.15.0
66
ENV JRUBY_SNAPSHOT_VERSION=9.4.15.0-SNAPSHOT

9.4-dev/jre25/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:25-jre-jammy
22

3-
RUN apt-get update && apt-get install -y libc6-dev make --no-install-recommends && rm -rf /var/lib/apt/lists/*
3+
RUN apt-get update && apt-get install -y libc6-dev make curl --no-install-recommends && rm -rf /var/lib/apt/lists/*
44

55
ENV JRUBY_VERSION=9.4.15.0
66
ENV JRUBY_SNAPSHOT_VERSION=9.4.15.0-SNAPSHOT

9.4/jdk25/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:25-jdk-jammy
22

3-
RUN apt-get update && apt-get install -y libc6-dev make --no-install-recommends && rm -rf /var/lib/apt/lists/*
3+
RUN apt-get update && apt-get install -y libc6-dev make curl --no-install-recommends && rm -rf /var/lib/apt/lists/*
44

55
ENV JRUBY_VERSION=9.4.14.0
66
ENV JRUBY_SHA256=7ea2be8d0c5989714c795b4544492bf9941c9576e7a78f593a19c85567bc0452

9.4/jre25/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:25-jre-jammy
22

3-
RUN apt-get update && apt-get install -y libc6-dev make --no-install-recommends && rm -rf /var/lib/apt/lists/*
3+
RUN apt-get update && apt-get install -y libc6-dev make curl --no-install-recommends && rm -rf /var/lib/apt/lists/*
44

55
ENV JRUBY_VERSION=9.4.14.0
66
ENV JRUBY_SHA256=7ea2be8d0c5989714c795b4544492bf9941c9576e7a78f593a19c85567bc0452

0 commit comments

Comments
 (0)