From 09a9020d18ba7557ad939cd19690db204958a4c4 Mon Sep 17 00:00:00 2001 From: Kevin Bieri Date: Tue, 5 Nov 2024 09:40:53 +0100 Subject: [PATCH] Fix locale After the cypress update, the locale is no longer set to de_CH. Applying it with an environment variable seems to do the trick. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5048e9c..911b6b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,8 @@ RUN addgroup --system cypress \ WORKDIR /app/test RUN echo 'LC_ALL=de_CH.UTF-8' | tee -a /etc/environment +ENV LANG=de_CH.UTF-8 +ENV LC_ALL=de_CH.UTF-8 ENV CYPRESS_CI=1 ENV TZ=Europe/Zurich