forked from drone/command-center-dashboard

zhongrj
2025-03-31 1c8073fbdbece7c5ae1584cb807b765f7ef72a26
修改打包命令
1 files modified
5 ■■■■ changed files
Dockerfile.test 5 ●●●● patch | view | raw | blame | history
Dockerfile.test
@@ -7,10 +7,7 @@
# 将当前目录(Vue 项目目录)的内容复制到 /app 目录中
COPY . .
# 安装项目依赖
RUN rm -rf node_modules && npm install --registry=https://registry.npmmirror.com
# 验证字体文件是否被正确复制
RUN ls -la src/assets/fonts/YouSheBiaoTiHei.ttf || echo "检查字体文件路径"
RUN rm -rf node_modules package-lock.json && npm install --registry=https://registry.npmmirror.com
# 构建项目
RUN npm run build:dev