Fix unzip removed by $savedAptMark.

This commit is contained in:
Romain Fluttaz 2018-10-25 20:41:55 +00:00
parent 710f6e02a5
commit 66053090a8
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,13 @@ FROM php:7.2-apache
LABEL maintainer="Andy Miller <rhuk@getgrav.org> (@rhukster)" \ LABEL maintainer="Andy Miller <rhuk@getgrav.org> (@rhukster)" \
maintainer="Romain Fluttaz <romain@fluttaz.fr>" maintainer="Romain Fluttaz <romain@fluttaz.fr>"
# install dependencies we need
RUN set -ex; \
\
apt-get update; \
apt-get install -y \
unzip
# install the PHP extensions we need # install the PHP extensions we need
RUN set -ex; \ RUN set -ex; \
\ \