CyberChef/Dockerfile

13 lines
280 B
Text
Raw Normal View History

2019-10-09 11:55:41 +08:00
# build a small nginx image with built app
FROM nginx
## Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
2019-10-11 23:36:47 +08:00
## From 'build' directory copy website to default nginx public folder
2019-10-09 11:55:41 +08:00
COPY ./build/prod /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]