From d01f588e298da5cf88f4b3749ced276911779fbb Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Fri, 15 Mar 2019 18:00:09 -0400 Subject: [PATCH] Apparently the ppa for PHP has difficulty installing and needs this for some reason. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 132a267..a4b34aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG GRAV_VERSION=1.5.8 # Install dependencies RUN apt-get update && \ - apt-get install -y --no-install-recommends software-properties-common && \ + apt-get install -y --no-install-recommends language-pack-en-base software-properties-common && \ add-apt-repository ppa:ondrej/php && \ apt-get update && \ apt-get install -y --no-install-recommends sudo wget unzip && \