工业互联网平台搭建的仓库管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456
  1. FROM nginx:1.22.1
  2. WORKDIR /www
  3. COPY nginx.conf /etc/nginx/nginx.conf
  4. COPY dist/ /www/dist/
  5. ENTRYPOINT ["/docker-entrypoint.sh"]
  6. CMD ["nginx", "-g", "daemon off;"]