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 .