Skip to content

Commit 730a313

Browse files
committed
25.04
1 parent 1e31907 commit 730a313

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docker/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:23.04
1+
FROM ubuntu:25.04
22

33
ARG DESKTOP_ENVIRONMENT_GITHUB_USER
44
ARG DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD
@@ -7,6 +7,7 @@ ARG DESKTOP_ENVIRONMENT_USER
77
ENV DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD $DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD
88
ENV EDITOR nano
99
ENV LANG en_US.UTF-8
10+
ENV LC_ALL $LANG
1011
ENV SHELL /bin/zsh
1112
ENV TERM xterm-256color
1213
ENV TZ Australia/Sydney
@@ -15,7 +16,10 @@ ENV USER $DESKTOP_ENVIRONMENT_USER
1516
ENV 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
2125
RUN apt-get update -qq && \
@@ -25,7 +29,7 @@ RUN apt-get update -qq && \
2529

2630
# Generate locales
2731
RUN 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

0 commit comments

Comments
 (0)