fix: dockerfile

This commit is contained in:
2026-06-17 22:58:59 +05:30
parent bc0902998f
commit 86b97a6e77
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
# (sometimes strict) version negotiation. # (sometimes strict) version negotiation.
FROM node:20-alpine AS base FROM node:20-alpine AS base
RUN npm install -g pnpm@latest RUN npm install -g pnpm@9
WORKDIR /repo WORKDIR /repo
# ---- deps ----------------------------------------------------------------- # ---- deps -----------------------------------------------------------------
+1 -1
View File
@@ -12,7 +12,7 @@
# negotiation across Node 20 minor versions. # negotiation across Node 20 minor versions.
FROM node:20-alpine AS base FROM node:20-alpine AS base
RUN npm install -g pnpm@latest RUN npm install -g pnpm@9
WORKDIR /repo WORKDIR /repo
FROM base AS deps FROM base AS deps