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 9e31a43 commit 4c48c54Copy full SHA for 4c48c54
collection/Dockerfile
@@ -7,7 +7,7 @@ ENV NEXT_TELEMETRY_DISABLED=1
7
WORKDIR /build
8
9
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
10
-RUN apk add --no-cache libc6-compat
+RUN apk add --no-cache libc6-compat openssl
11
COPY package.json package-lock.json* ./
12
RUN npm ci
13
COPY project.json project.json
@@ -26,7 +26,7 @@ RUN npx nx run collection:build
26
27
# Production image, copy all the files and run next
28
FROM docker.io/node:lts-alpine AS runner
29
-RUN apk add --no-cache dumb-init
+RUN apk add --no-cache dumb-init openssl
30
31
ENV NODE_ENV=production
32
ENV PORT=3000
0 commit comments