Skip to content

Commit 4bb4ed1

Browse files
authored
chore: pin Node 24 LTS (#97)
1 parent 4f8a561 commit 4bb4ed1

3 files changed

Lines changed: 1294 additions & 5 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM node:22-alpine AS builder
1+
FROM node:24-alpine AS builder
22
WORKDIR /app
33

4-
COPY package*.json ./
4+
COPY package.json pnpm-lock.yaml ./
55
RUN npm install -g pnpm@10 \
6-
&& pnpm install --prod
6+
&& pnpm install --prod --frozen-lockfile
77

88
COPY . .
99

10-
FROM node:22-alpine
10+
FROM node:24-alpine
1111
WORKDIR /app
1212

1313
COPY --from=builder /app .

0 commit comments

Comments
 (0)