diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..8fe1d5ca9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:latest +RUN apt-get update && \ + apt-get install -y apache2 +ADD . /var/www/html/ +ENTRYPOINT apachectl -D FOREGROUND