diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1a0a33c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu +MAINTAINER label="Rohan Rustagi" +RUN apt update -y +RUN apt install nginx -y +COPY . /var/www/html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file