# HG changeset patch # User etisserant # Date 1672611016 -3600 # Node ID 961903c0b76d464479f384635e07bbc9dd6e2894 # Parent c3a13fcbda3a596795fff1b0cd2827538096d3ab Tests: Fix dockerfile not finding locales. diff -r c3a13fcbda3a -r 961903c0b76d tests/tools/Docker/Dockerfile --- a/tests/tools/Docker/Dockerfile Sun Jan 01 22:40:38 2023 +0100 +++ b/tests/tools/Docker/Dockerfile Sun Jan 01 23:10:16 2023 +0100 @@ -17,12 +17,13 @@ RUN groupadd -g $GID $UNAME RUN useradd -m -u $UID -g $GID -s /bin/bash $UNAME -RUN apt-get install locales -RUN locale-gen en_US.UTF-8 -RUN update-locale LANG=en_US.UTF-8 +RUN set -xe \ + && apt-get update \ + && apt-get install locales \ + && locale-gen en_US.UTF-8 \ + && update-locale LANG=en_US.UTF-8 RUN set -xe \ - && apt-get update \ && TZ="America/Paris" \ DEBIAN_FRONTEND="noninteractive" \ apt-get install -y --no-install-recommends \