Update Grav version to 1.6.16

Add missing libzip-dev dependency.
This commit is contained in:
eloquentcarbon 2019-10-16 22:18:19 -04:00 committed by GitHub
parent f6e2ac984f
commit b5a15b2a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y \
libjpeg62-turbo-dev \ libjpeg62-turbo-dev \
libpng-dev \ libpng-dev \
libyaml-dev \ libyaml-dev \
libzip-dev \
&& docker-php-ext-install opcache \ && docker-php-ext-install opcache \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j$(nproc) gd \ && docker-php-ext-install -j$(nproc) gd \
@ -41,8 +42,8 @@ RUN chown www-data:www-data /var/www
USER www-data USER www-data
# Define Grav version and expected SHA1 signature # Define Grav version and expected SHA1 signature
ENV GRAV_VERSION 1.5.5 ENV GRAV_VERSION 1.6.16
ENV GRAV_SHA1 af0433facdae1afeb1d973a66db2315c5022b10d ENV GRAV_SHA1 4fbb140fcf110c692a9d8102041c3f26b2fca9da
# Install grav # Install grav
WORKDIR /var/www WORKDIR /var/www