Dockerfile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # 设置基础镜像
  2. FROM node:latest as build-stage
  3. # 定义作者
  4. LABEL maintainer=Zenas
  5. #创建一个工作目录
  6. WORKDIR ./jeecgboot-vue3
  7. #RUN npm install -g yarn
  8. RUN npm install && npm run build
  9. # production stage
  10. FROM nginx as production-stage
  11. #COPY --from=build-stage ./dist /usr/share/nginx/html
  12. RUN echo "server { \
  13. listen 80; \
  14. location /shop-api/ { \
  15. proxy_pass http://69.230.201.115:8080/shop-api/; \
  16. proxy_redirect off; \
  17. proxy_set_header Host http://69.230.201.115:8080; \
  18. proxy_set_header X-Real-IP \$remote_addr; \
  19. proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; \
  20. } \
  21. #解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题 \
  22. location / { \
  23. root /var/www/html/; \
  24. index index.html index.htm; \
  25. if (!-e \$request_filename) { \
  26. rewrite ^(.*)\$ /index.html?s=\$1 last; \
  27. break; \
  28. } \
  29. } \
  30. access_log /var/log/nginx/access.log ; \
  31. } " > /etc/nginx/conf.d/default.conf \
  32. && mkdir -p /var/www \
  33. && mkdir -p /var/www/html
  34. ADD dist/ /var/www/html/
  35. # 暴露镜像端口
  36. EXPOSE 80
  37. EXPOSE 443
  38. CMD ["nginx","-g","daemon off"]