Minimal to see what I actually need

This commit is contained in:
William Miceli
2019-03-28 14:06:20 -04:00
parent f7cf70f2bf
commit 3459e6a60d

View File

@@ -1,19 +1,18 @@
FROM nginx:stable FROM nginx:stable
# Version of Grav to install # Version of Grav to install
ARG GRAV_VERSION=1.5.8 ARG GRAV_VERSION=1.5.10
# Install dependencies # Install dependencies
RUN export LC_ALL=C.UTF-8 && \ RUN apt-get update && \
apt-get update && \ apt-get install -y --no-install-recommends \
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 && \
# Install PHP 7.2 and Module Requirements for Grav # Install PHP 7.2 and Module Requirements for Grav
php7.2 \ # Temporarily removed sudo wget unzip
php7.2-curl \ php
php7.2-gd # php-curl \
# php-gd \
# php-json \
# php-mbstring
ADD https://github.com/krallin/tini/releases/download/v0.13.2/tini /usr/local/bin/tini ADD https://github.com/krallin/tini/releases/download/v0.13.2/tini /usr/local/bin/tini
RUN chmod +x /usr/local/bin/tini RUN chmod +x /usr/local/bin/tini