Files
vue3/Dockerfile
2023-06-21 12:04:22 +08:00

11 lines
316 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 静态化部署方案
# 需要先在Jenkins打包生成dist目录然后运行
FROM nginx:1.24.0-alpine-slim
# 设置时区使nginx日志的时间变为中国标准时间
ENV TZ=CST-8
# 此配置可以通过yml的configs选项覆盖
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY storybook-static /app