Skip to content
Snippets Groups Projects
Commit c9da1e10 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

fix apt install errors on webserver

parent 3720642d
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,9 @@
FROM php:{{APP_PHP_VERSION}}-apache
# install packages
RUN apt-get update && apt-get install -y {{APP_APT_PACKAGES}}
RUN apt-get update && rm -rf /var/lib/apt/lists/*
RUN mkdir -p /var/cache/apt/archives/partial
RUN apt-get install -y {{APP_APT_PACKAGES}}
# enable 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