Skip to content

Commit 95f0750

Browse files
Fix missing entrypoint
Entrypoint was missing on the GraalVM 21 image, this is now fixed.
1 parent 19ce358 commit 95f0750

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

java/21/graalvm/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ WORKDIR /home/container
4848

4949
STOPSIGNAL SIGINT
5050

51-
##COPY --chown=container:container ./../../entrypoint.sh /entrypoint.sh
52-
##RUN chmod +x /entrypoint.sh
53-
##ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
54-
##CMD ["/entrypoint.sh"]
51+
COPY --chown=container:container ./../../entrypoint.sh /entrypoint.sh
52+
RUN chmod +x /entrypoint.sh
53+
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
54+
CMD ["/entrypoint.sh"]

0 commit comments

Comments
 (0)