mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-25 06:26:37 +00:00
Use the default locale before the new one is ready
This commit is contained in:
parent
7987882a11
commit
21d884c6e9
@ -48,9 +48,11 @@ RUN --mount=type=cache,id=apt-lib-cache-${TARGETARCH},sharing=private,target=/va
|
|||||||
set -x && \
|
set -x && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
# Install locales
|
# Install locales
|
||||||
|
LC_ALL='C' LANG='C' LANGUAGE='C' \
|
||||||
apt-get -y --no-install-recommends install locales && \
|
apt-get -y --no-install-recommends install locales && \
|
||||||
printf -- "en_US.UTF-8 UTF-8\n" > /etc/locale.gen && \
|
# localedef -v -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \
|
||||||
locale-gen en_US.UTF-8 && \
|
printf -- "${LC_ALL} UTF-8\n" > /etc/locale.gen && \
|
||||||
|
locale-gen && \
|
||||||
# Clean up
|
# Clean up
|
||||||
apt-get -y autopurge && \
|
apt-get -y autopurge && \
|
||||||
apt-get -y autoclean && \
|
apt-get -y autoclean && \
|
||||||
|
Loading…
Reference in New Issue
Block a user