Dockerfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. FROM nginx
  2. MAINTAINER 229230041@qq.com
  3. VOLUME /tmp
  4. ENV LANG en_US.UTF-8
  5. RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
  6. && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
  7. && apt update \
  8. && apt install yarn \
  9. && yarn install \
  10. && yarn build
  11. RUN echo "server { \
  12. listen 80; \
  13. location /shop-api/ { \
  14. proxy_pass http://69.230.201.115:8080/shop-api/; \
  15. proxy_redirect off; \
  16. proxy_set_header Host http://69.230.201.115:8080; \
  17. proxy_set_header X-Real-IP \$remote_addr; \
  18. proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; \
  19. } \
  20. #解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题 \
  21. location / { \
  22. root /var/www/html/; \
  23. index index.html index.htm; \
  24. if (!-e \$request_filename) { \
  25. rewrite ^(.*)\$ /index.html?s=\$1 last; \
  26. break; \
  27. } \
  28. } \
  29. access_log /var/log/nginx/access.log ; \
  30. } " > /etc/nginx/conf.d/default.conf \
  31. && mkdir -p /var/www \
  32. && mkdir -p /var/www/html
  33. ADD dist/ /var/www/html/
  34. EXPOSE 80
  35. EXPOSE 443