Skip to content
Snippets Groups Projects
Commit 5470b5f6 authored by Axel Hahn's avatar Axel Hahn
Browse files

fix install packages

parent d5c4e8eb
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
FROM php:{{APP_PHP_VERSION}}-apache FROM php:{{APP_PHP_VERSION}}-apache
# install packages # install packages
RUN apt-get update && apt-get install -y {{APP_APT_PACKAGES}} RUN rm -rf /var/lib/apt/lists/*
RUN mkdir -p /var/cache/apt/archives/partial
RUN apt-get update
RUN apt-get install -y {{APP_APT_PACKAGES}}
# enable apache modules # enable apache modules
RUN a2enmod {{APP_APACHE_MODULES}} RUN a2enmod {{APP_APACHE_MODULES}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment