adoptium / containers

Repo containing the dockerfiles and scripts to produce the official eclipse-temurin containers.
https://hub.docker.com/_/eclipse-temurin/
Apache License 2.0
206 stars 88 forks source link

[Bug]: path of src.zip is error #472

Open hzfq opened 6 months ago

hzfq commented 6 months ago

Please add the exact image (with tag) that you are using

8u392-b08-jdk-alpine

Please add the version of Docker you are running

24.0.7

What happened?

In 8/jdk/alpine/Dockerfile, the src.zip file is definitely ${JAVA_HOME}/src.zip.

So, the

rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/lib/src.zip;

should be following

rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/src.zip;

Relevant log output

No response