add zip/unzip to dockerfile

This commit is contained in:
Jurgis Sakalauskas
2025-01-08 13:17:46 +02:00
parent 3c3c969cbb
commit 34a6e8f222
+1 -1
View File
@@ -12,7 +12,7 @@ RUN if [ -z "${UID}" ] ; then echo UID argument is NOT provided ; else usermod -
# enable mod_rewrite for laravel routing to work (.htaccess) # enable mod_rewrite for laravel routing to work (.htaccess)
RUN a2enmod rewrite RUN a2enmod rewrite
RUN apt-get update && apt-get install -y git zip unzip php-zip RUN apt-get update && apt-get install -y git zip unzip
COPY . /var/www/html COPY . /var/www/html
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer