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 112a16b commit 0717408Copy full SHA for 0717408
Dockerfile
@@ -1,9 +1,10 @@
1
-FROM --platform=amd64 node:18-alpine AS base
+FROM --platform=amd64 node:20-alpine3.17 AS base
2
3
# Install dependencies only when needed
4
FROM base AS deps
5
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
6
-RUN apk add --no-cache libc6-compat libssl1.1
+RUN apk add --no-cache libc6-compat
7
+
8
WORKDIR /app
9
10
# Install dependencies based on the preferred package manager
0 commit comments