💚 📦 打包设置

This commit is contained in:
bunny 2025-05-24 15:59:20 +08:00
parent 0598597e3e
commit 8ca3934de7
2 changed files with 1 additions and 4 deletions

View File

@ -29,7 +29,7 @@ build-job:
# 打印拉取完成信息 # 打印拉取完成信息
- echo "docker pull complete." - echo "docker pull complete."
# 使用Dockerfile构建Docker镜像并打上标签 # 使用Dockerfile构建Docker镜像并打上标签
- cd docker && pwd && ls && docker build -f Dockerfile -t $CONTAINER_NAME:$DOCKER_TAG . - cd docker && docker build -f Dockerfile -t $CONTAINER_NAME:$DOCKER_TAG .
# 打印构建成功信息 # 打印构建成功信息
- echo "Application successfully deployed." - echo "Application successfully deployed."

View File

@ -61,9 +61,6 @@ const useMock = (mode: string) => {
// enableProd: true, // enableProd: true,
// build: true, // build: true,
// http2: true, // http2: true,
// enableProd: true,
// build: true,
// http2: true,
}) })
: null; : null;
}; };