11 lines
137 B
Plaintext
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;"
|