apache2/Dockerfile

13 lines
197 B
Docker

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"