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 3de6bc7 commit d9b898eCopy full SHA for d9b898e
Dockerfile
@@ -1,11 +1,12 @@
1
-FROM node:22-alpine as builder
+FROM node:22-alpine AS builder
2
3
ARG BUILD_HASH
4
ENV BUILD_HASH=${BUILD_HASH}
5
6
WORKDIR /app
7
8
-RUN npm install -g pnpm@latest-10
+# remove when 10.12.4 released
9
+RUN npm install -g [email protected]
10
11
COPY package.json pnpm-lock.yaml .npmrc ./
12
@@ -19,7 +20,7 @@ RUN pnpm run build
19
20
21
# --------------------------------------------
22
-FROM node:22-alpine as runner
23
+FROM node:22-alpine AS runner
24
25
ENV NITRO_CLUSTER_WORKERS=1
26
0 commit comments