-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: install missing language pack for GraalVM #3189
Conversation
Fixes itzg#2487. Also sets `LC_ALL` to `en_US.UTF-8`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great research and discovery. Thanks.
Just a tiny tweak is needed.
@@ -64,7 +64,7 @@ WORKDIR /data | |||
STOPSIGNAL SIGTERM | |||
|
|||
# End user MUST set EULA and change RCON_PASSWORD | |||
ENV TYPE=VANILLA VERSION=LATEST EULA="" UID=1000 GID=1000 | |||
ENV TYPE=VANILLA VERSION=LATEST EULA="" UID=1000 GID=1000 LC_ALL=en_US.UTF-8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you tested this locale setting with the Ubuntu and Alpine based image builds?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have not been able to test this yet for the other distros. But since the tests pass as you said, it should be fine.
PR tests pass, so other base distros seem to be fine with it. |
Included in this build https://github.com/itzg/docker-minecraft-server/actions/runs/12333206137 |
Fixes #2487 (followup of #2487 (comment)). Also sets
LC_ALL
toen_US.UTF-8
.