Skip to content

Commit cd4bd77

Browse files
committed
Remove unnecessary forward slash
1 parent 5e83289 commit cd4bd77

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
@@ -20,9 +20,9 @@ RUN set -eux; \
2020
else \
2121
JAVA_URL=$JAVA_URL_AARCH64; \
2222
fi; \
23-
curl -fL -o /jdk.tar.gz "$JAVA_URL"; \
23+
curl -fL -o jdk.tar.gz "$JAVA_URL"; \
2424
mkdir -p /jdk; \
25-
tar --extract --file /jdk.tar.gz --directory /jdk --strip-components 1; \
25+
tar --extract --file jdk.tar.gz --directory /jdk --strip-components 1; \
2626
/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
2727

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

0 commit comments

Comments
 (0)