From 730a3134362927f8965589f6322b4554e0a5e388 Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Thu, 28 Nov 2024 13:26:36 +1100 Subject: [PATCH] 25.04 --- docker/Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 40eb3d5..7fe1d3a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:23.04 +FROM ubuntu:25.04 ARG DESKTOP_ENVIRONMENT_GITHUB_USER ARG DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD @@ -7,6 +7,7 @@ ARG DESKTOP_ENVIRONMENT_USER ENV DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD $DESKTOP_ENVIRONMENT_HOST_USER_PASSWORD ENV EDITOR nano ENV LANG en_US.UTF-8 +ENV LC_ALL $LANG ENV SHELL /bin/zsh ENV TERM xterm-256color ENV TZ Australia/Sydney @@ -15,7 +16,10 @@ ENV USER $DESKTOP_ENVIRONMENT_USER ENV HOME /home/$USER # Restore minimized distribution content e.g. man pages -RUN yes | unminimize +RUN apt-get update -qq && \ + apt-get install -qq \ + unminimize && \ + yes | unminimize # Install locales and timezone data RUN apt-get update -qq && \ @@ -25,7 +29,7 @@ RUN apt-get update -qq && \ # Generate locales RUN locale-gen $LANG && \ - update-locale LANG=$LANG && \ + update-locale LANG=$LANG LC_ALL=$LC_ALL && \ dpkg-reconfigure --frontend=noninteractive locales # Set timezone