We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 454c85f commit 86c2bd6Copy full SHA for 86c2bd6
Dockerfile
@@ -1,14 +1,14 @@
1
ARG NOTION_PAGE_ID
2
# Install dependencies only when needed
3
-FROM node:14-alpine AS deps
+FROM node:18-alpine3.18 AS deps
4
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
5
RUN apk add --no-cache libc6-compat
6
WORKDIR /app
7
COPY package.json ./
8
RUN yarn install --frozen-lockfile
9
10
# Rebuild the source code only when needed
11
-FROM node:14-alpine AS builder
+FROM node:18-alpine3.18 AS builder
12
13
14
COPY --from=deps /app/node_modules ./node_modules
0 commit comments