diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..553ef9e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM nginx:latest +RUN rm -f /etc/nginx/conf.d/default.conf +COPY nginx.conf /etc/nginx/conf.d/nginx.conf +COPY index.html /usr/share/nginx/html/ +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"]