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 8052bfb commit b9cd2b4Copy full SHA for b9cd2b4
packages/cli-v3/src/Containerfile.prod
@@ -1,10 +1,10 @@
1
-FROM node:20-alpine@sha256:bf77dc26e48ea95fca9d1aceb5acfa69d2e546b765ec2abfb502975f1a2d4def AS base
+FROM node:20-bookworm-slim@sha256:d4cdfc305abe5ea78da7167bf78263c22596dc332f2654b662890777ea166224 AS base
2
3
-RUN apk add --no-cache dumb-init
+ENV DEBIAN_FRONTEND=noninteractive
4
+RUN apt-get update && apt-get install -y dumb-init && rm -rf /var/lib/apt/lists/*
5
-# Create workdir and set appropriate permissions
6
+# Create and set workdir with appropriate permissions
7
RUN mkdir /app && chown node:node /app
-
8
WORKDIR /app
9
10
# copy all the files just in case anything is needed in postinstall
0 commit comments