Files
2018-02-05 07:06:40 +07:00

11 lines
137 B
Plaintext

FROM nginx:latest
COPY ./w2p.conf /etc/nginx/conf.d/
RUN apt update
RUN apt-get install curl -y
EXPOSE 80
CMD nginx -g "daemon off;"