From f7cf70f2bf5cf8f993d3866c7fc49615aec5920d Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Fri, 15 Mar 2019 18:05:05 -0400 Subject: [PATCH] Going to try switching the charset instead --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4b34aa..508b013 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,9 @@ FROM nginx:stable ARG GRAV_VERSION=1.5.8 # Install dependencies -RUN apt-get update && \ - apt-get install -y --no-install-recommends language-pack-en-base software-properties-common && \ +RUN export LC_ALL=C.UTF-8 && \ + apt-get update && \ + apt-get install -y --no-install-recommends software-properties-common && \ add-apt-repository ppa:ondrej/php && \ apt-get update && \ apt-get install -y --no-install-recommends sudo wget unzip && \