diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..53261aa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM ubuntu:latest + +RUN apt-get update -y && apt-get install -y apache2 +RUN apt-get install -y php libapache2-mod-php + +ADD . /var/www/html/ +EXPOSE 80 +ENTRYPOINT apachectl -D FOREGROUND