mumui/nginx/Dockerfile

7 lines
105 B
Docker

FROM nginx:latest
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]