Skip to content

Commit 8a7b7fa

Browse files
committed
Remove unnecessary forward slash
1 parent 327bccb commit 8a7b7fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ ENV JAVA_URL="https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb
1313

1414
RUN set -eux; \
1515
microdnf -y install gzip tar; \
16-
curl -fL -o /jdk.tar.gz "$JAVA_URL"; \
16+
curl -fL -o jdk.tar.gz "$JAVA_URL"; \
1717
mkdir -p /jdk; \
18-
tar --extract --file /jdk.tar.gz --directory /jdk --strip-components 1; \
18+
tar --extract --file jdk.tar.gz --directory /jdk --strip-components 1; \
1919
/jdk/bin/jlink --verbose --compress 2 --strip-java-debug-attributes --no-header-files --no-man-pages --output jre --add-modules java.base,java.desktop,java.instrument,java.management,java.naming,java.net.http,java.sql,jdk.attach,jdk.jdi,jdk.unsupported,jdk.crypto.ec,jdk.zipfs
2020

2121
FROM ghcr.io/oracle/oraclelinux:9-slim

0 commit comments

Comments
 (0)