Initial commit
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
commit
60ae19a5e0
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM php:7.4-apache
|
||||
EXPOSE 80
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y wget \
|
||||
&& wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_amd64.deb -O /tmp/modpagespeed.deb \
|
||||
&& dpkg -i /tmp/modpagespeed.deb \
|
||||
&& rm /tmp/modpagespeed.deb \
|
||||
&& service apache2 restart
|
||||
RUN docker-php-ext-install -j$(nproc) opcache pdo_mysql mysqli
|
Loading…
Reference in New Issue
Block a user