From 3459e6a60d3c489cd73cc82d7c3db6bcf0302e96 Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Thu, 28 Mar 2019 14:06:20 -0400 Subject: [PATCH] Minimal to see what I actually need --- Dockerfile | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 508b013..c59d104 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,18 @@ FROM nginx:stable # Version of Grav to install -ARG GRAV_VERSION=1.5.8 +ARG GRAV_VERSION=1.5.10 # Install dependencies -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 && \ +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ # Install PHP 7.2 and Module Requirements for Grav - php7.2 \ - php7.2-curl \ - php7.2-gd + # Temporarily removed sudo wget unzip + php + # php-curl \ + # php-gd \ + # php-json \ + # php-mbstring ADD https://github.com/krallin/tini/releases/download/v0.13.2/tini /usr/local/bin/tini RUN chmod +x /usr/local/bin/tini