fix(docker): remove duplicate dependency installation in Dockerfile

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2025-06-10 19:16:27 +08:00
parent 3f19e6be51
commit 0bf70fa6b6

View File

@@ -23,11 +23,12 @@ COPY apps/ssr/package.json ./apps/ssr/package.json
COPY packages/data/package.json ./packages/data/package.json
COPY scripts ./scripts
# Install all dependencies
RUN pnpm install --frozen-lockfile
COPY config.json ./
COPY builder.config.json ./
# Install all dependencies
RUN pnpm install --frozen-lockfile
# Copy all source code
COPY . .