diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9812c8f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM alpine:latest +RUN apk update && apk upgrade && apk add bash autoconf automake make gcc g++ nginx +COPY nginx /etc/nginx +EXPOSE 80 +EXPOSE 443 +STOPSIGNAL SIGTERM +CMD ["/bin/bash", "-c", "chmod 755 /usr/share/nginx/html && nginx -g 'daemon off;'"] \ No newline at end of file