We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca5a2b7 + e17936e commit 5ba1606Copy full SHA for 5ba1606
openjdk/Dockerfile
@@ -15,7 +15,8 @@ RUN set -eux; \
15
curl --output /tmp/jdk.tgz "$JDK_PKG_URL" && \
16
echo "$JDK_PKG_SHA256 */tmp/jdk.tgz" | sha256sum -c; \
17
mkdir -p "$JAVA_HOME"; \
18
- tar --extract --file /tmp/jdk.tgz --directory "$JAVA_HOME" --strip-components 1
+ tar --extract --file /tmp/jdk.tgz --directory "$JAVA_HOME" --strip-components 1 && \
19
+ rm -fr /tmp/jdk.tgz
20
21
COPY --from=build-stage /usr/local /usr/local/
22
COPY --from=build-stage /opt/ffmpeg/lib/pkgconfig /usr/local/lib/pkgconfig
0 commit comments