From b0ccd2d131b2e3df5d901385e38ed0077b8d0fbc Mon Sep 17 00:00:00 2001 From: chenyao <1219716595@qq.com> Date: Mon, 14 Apr 2025 12:31:31 +0800 Subject: [PATCH] feat:修改任务管理内容 --- Dockerfile.test | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Dockerfile.test b/Dockerfile.test index e78e7b1..b463a31 100644 --- a/Dockerfile.test +++ b/Dockerfile.test @@ -7,13 +7,10 @@ # 将当前目录(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 +RUN npm run build:test # 查看 -RUN ls /app/dist \ No newline at end of file +RUN ls /app/dist -- Gitblit v1.9.3