You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Beginning with the recent release of the Java 23 Corretto alpine docker images, the Dockerfile examples contain an ENV syntax on or about line 19 that results in a warning message during the build of the container image.
The current syntax used in the files is, as follows:
ENV LANG C.UTF-8
The above syntax is consider "legacy", which results in the warning. Adding an '=' sign between the variable name 'LANG' and the value 'C.UTF-8' resolves the issue, as follows:
ENV LANG=C.UTF-8
The Dockerfile examples released with the Java 22 did not exhibit this issue.
Naturally, this is a minor issue that can be fixed by quickly adding the '=' between the variable name and value.
The text was updated successfully, but these errors were encountered:
Beginning with the recent release of the Java 23 Corretto alpine docker images, the Dockerfile examples contain an ENV syntax on or about line 19 that results in a warning message during the build of the container image.
The current syntax used in the files is, as follows:
ENV LANG C.UTF-8
The above syntax is consider "legacy", which results in the warning. Adding an '=' sign between the variable name 'LANG' and the value 'C.UTF-8' resolves the issue, as follows:
ENV LANG=C.UTF-8
The Dockerfile examples released with the Java 22 did not exhibit this issue.
Naturally, this is a minor issue that can be fixed by quickly adding the '=' between the variable name and value.
The text was updated successfully, but these errors were encountered: