|
|
@ -1,3 +1,16 @@ |
|
|
|
FROM ubuntu:16.04 |
|
|
|
RUN apt-get update |
|
|
|
RUN touch xnxx.txt |
|
|
|
# Update the repository sources list |
|
|
|
RUN apt-get update |
|
|
|
|
|
|
|
# Install and run apache |
|
|
|
RUN apt-get install -y apache2 && apt-get clean |
|
|
|
|
|
|
|
#ENTRYPOINT ["/usr/sbin/apache2", "-k", "start"] |
|
|
|
|
|
|
|
|
|
|
|
#ENV APACHE_RUN_USER www-data |
|
|
|
#ENV APACHE_RUN_GROUP www-data |
|
|
|
#ENV APACHE_LOG_DIR /var/log/apache2 |
|
|
|
|
|
|
|
EXPOSE 80 |
|
|
|
CMD apachectl -D FOREGROUND |