action_deploy/Dockerfile

13 lines
138 B
Docker

FROM nginx:latest
COPY ./nginx.conf /etc/nginx/
EXPOSE 80
EXPOSE 81
VOLUME /usr/share/nginx/data
CMD ["nginx", "-g", "daemon off;"]