We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 380bb1f commit 91ffb18Copy full SHA for 91ffb18
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:20-slim as builder
+FROM node:lts-slim as builder
2
WORKDIR /app
3
COPY package.json pnpm-lock.yaml ./
4
RUN mkdir -p patches
@@ -13,7 +13,7 @@ WORKDIR /app
13
COPY assets ./assets
14
RUN find assets -name '*.json' -exec sh -c 'grep -v "//" "$1" | jq -c . | sponge "$1"' _ {} \;
15
16
-FROM node:20-slim
+FROM node:lts-slim
17
RUN apt update -y && apt install -y graphviz && apt clean
18
19
ENV NODE_ENV=production
0 commit comments