We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889704a commit da293b7Copy full SHA for da293b7
frontend/web/Dockerfile
@@ -7,14 +7,14 @@ FROM node:lts-alpine AS base
7
FROM base AS deps
8
WORKDIR /app
9
COPY package.json pnpm-lock.yaml ./
10
-RUN corepack enable pnpm && pnpm install --frozen-lockfile
+RUN npm install -g corepack@latest && corepack enable pnpm && pnpm install --frozen-lockfile
11
12
# Stage 2: Build the application
13
FROM base AS builder
14
15
COPY --from=deps /app/node_modules ./node_modules
16
COPY . .
17
18
19
# Stage 3: Production server
20
FROM base AS runner
0 commit comments