Dockerfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 yarn install --registry=https://registry.npm.taobao.org
  9. RUN yarn build
  10. # production stage
  11. FROM nginx:stable-alpine as production-stage
  12. COPY --from=build-stage /jeecgboot-vue3/dist /usr/share/nginx/html
  13. RUN echo "server { \
  14. listen 80; \
  15. location /shop-api/ { \
  16. proxy_pass http://69.230.201.115:8080/shop-api/; \
  17. proxy_redirect off; \
  18. proxy_set_header Host http://69.230.201.115:8080; \
  19. proxy_set_header X-Real-IP \$remote_addr; \
  20. proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; \
  21. } \
  22. #解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题 \
  23. location / { \
  24. root /var/www/html/; \
  25. index index.html index.htm; \
  26. if (!-e \$request_filename) { \
  27. rewrite ^(.*)\$ /index.html?s=\$1 last; \
  28. break; \
  29. } \
  30. } \
  31. access_log /var/log/nginx/access.log ; \
  32. } " > /etc/nginx/conf.d/default.conf \
  33. && mkdir -p /var/www \
  34. && mkdir -p /var/www/html
  35. ADD dist/ /var/www/html/
  36. # 暴露镜像端口
  37. EXPOSE 80
  38. EXPOSE 443
  39. CMD ["nginx","-g","daemon off"]