On the docker with the php:7.2-apache image, I just needed zip and unzip. No need for php-zip:
apt-get install zip unzip
or dockerfile
RUN ["apt-get", "update"] RUN ["apt-get", "install", "-y", "zip"] RUN ["apt-get", "install", "-y", "unzip"]
Armel Larcier Aug 29 '19 at 11:30 2019-08-29 11:30
source share