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 270fb21 commit addd5e8Copy full SHA for addd5e8
Dockerfile
@@ -1,6 +1,6 @@
1
# syntax=docker/dockerfile:1
2
3
-FROM node:18-alpine AS builder
+FROM node:22-alpine3.20 AS builder
4
WORKDIR /build
5
# install python etc so node-gyp works for the optional dependencies
6
RUN apk add --no-cache make gcc g++ python3
@@ -13,7 +13,7 @@ RUN chmod +x ./scripts/start.sh
13
RUN CI=true pnpm install --prod --frozen-lockfile
14
COPY --link . .
15
16
-FROM node:18-alpine AS runner
+FROM node:22-alpine3.20 AS runner
17
RUN apk --no-cache add curl \
18
&& adduser --disabled-password --home /home/container container \
19
&& mkdir /app \
0 commit comments