13 lines
276 B
Docker
13 lines
276 B
Docker
FROM swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-alpine
|
|
|
|
RUN rm -f /etc/nginx/conf.d/default.conf
|
|
|
|
COPY app/dist/ /usr/share/nginx/html/flow/
|
|
COPY scripts/deploy/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN nginx -t
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|