更新 Dockerfile

修改一下
This commit is contained in:
ywp
2025-06-14 16:27:41 +08:00
parent cc330a8d8c
commit 126d27e05a

View File

@ -3,7 +3,7 @@ FROM node:16 AS builder
WORKDIR /app
COPY package.json yarn.lock ./
COPY package.json ./
RUN yarn install --frozen-lockfile
COPY . .