BadDaemons/Dockerfile
2018-08-26 00:33:47 +02:00

6 lines
121 B
Docker

FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html
COPY public /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]