From cc09a57fad37b515ed4886400325cdb0256eebf5 Mon Sep 17 00:00:00 2001 From: Rui Carmo Date: Thu, 28 Nov 2019 13:22:37 +0000 Subject: [PATCH] Yep. I knew locale-gen was going to be necessary. --- .github/workflows/bionic/Dockerfile | 3 +++ .github/workflows/buster/Dockerfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/bionic/Dockerfile b/.github/workflows/bionic/Dockerfile index 0e57021..980bac1 100644 --- a/.github/workflows/bionic/Dockerfile +++ b/.github/workflows/bionic/Dockerfile @@ -28,6 +28,9 @@ RUN apt-get update \ uwsgi-plugin-python3 \ && locale-gen en_US.UTF-8 +ENV LC_ALL=en_US.UTF-8 +ENV LANG=en_US.UTF-8 + VOLUME ["/run"] CMD ["/usr/bin/python3", "/run/piku.py"] \ No newline at end of file diff --git a/.github/workflows/buster/Dockerfile b/.github/workflows/buster/Dockerfile index d686328..d09879b 100644 --- a/.github/workflows/buster/Dockerfile +++ b/.github/workflows/buster/Dockerfile @@ -28,6 +28,9 @@ RUN apt-get update \ uwsgi-plugin-python3 \ && locale-gen en_US.UTF-8 +ENV LC_ALL=en_US.UTF-8 +ENV LANG=en_US.UTF-8 + VOLUME ["/run"] CMD ["/usr/bin/python3", "/run/piku.py"] \ No newline at end of file