apache2/Dockerfile

13 lines
197 B
Docker
Raw Normal View History

2022-03-01 15:41:08 +01:00
FROM registry.sindominio.net/debian
RUN apt-get update && \
apt-get -qy install apache2 && \
apt-get clean
RUN a2enmod alias proxy proxy_fcgi
EXPOSE 8000
ADD start.sh .
CMD "/start.sh"