File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:23 .04
1+ FROM ubuntu:25 .04
22
33ARG DESKTOP_ENVIRONMENT_GITHUB_USER
44ARG DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD
@@ -7,6 +7,7 @@ ARG DESKTOP_ENVIRONMENT_USER
77ENV DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD $DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD
88ENV EDITOR nano
99ENV LANG en_US.UTF-8
10+ ENV LC_ALL $LANG
1011ENV SHELL /bin/zsh
1112ENV TERM xterm-256color
1213ENV TZ Australia/Sydney
@@ -15,7 +16,10 @@ ENV USER $DESKTOP_ENVIRONMENT_USER
1516ENV HOME /home/$USER
1617
1718# Restore minimized distribution content e.g. man pages
18- RUN yes | unminimize
19+ RUN apt-get update -qq && \
20+ apt-get install -qq \
21+ unminimize && \
22+ yes | unminimize
1923
2024# Install locales and timezone data
2125RUN apt-get update -qq && \
@@ -25,7 +29,7 @@ RUN apt-get update -qq && \
2529
2630# Generate locales
2731RUN locale-gen $LANG && \
28- update-locale LANG=$LANG && \
32+ update-locale LANG=$LANG LC_ALL=$LC_ALL && \
2933 dpkg-reconfigure --frontend=noninteractive locales
3034
3135# Set timezone
You can’t perform that action at this time.
0 commit comments