Files
geg-gas-web/docker/Dockerfile

14 lines
284 B
Docker
Raw Normal View History

FROM --platform=linux/arm64 docker.xuanyuan.run/library/nginx:1.29.0
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY ./50x.html /usr/share/nginx/html/50x.html
COPY ./dist/ /usr/share/nginx/html/
EXPOSE 8080
CMD ["nginx","-g","daemon off;"]
# docker build -t pcitc/itc-web:1.0.0 .