- 下载 chart.min.js 到本地(200KB) - analysis.html 引用改为 /chart.min.js - Dockerfile 添加 chart.min.js 复制 - 避免 CDN 访问问题导致图表无法渲染
4 lines
162 B
Docker
4 lines
162 B
Docker
FROM nginx:alpine
|
|
COPY index.html admin.html reset-password.html analysis.html chart.min.js /usr/share/nginx/html/
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|