From 9c6ec48d164090afc6f544c7710b3a5af6f9e391 Mon Sep 17 00:00:00 2001 From: Marc Hagen Date: Sun, 1 Jan 2023 17:44:15 +0100 Subject: [PATCH] [change] Change base to node 18 --- docker/debian-base.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/debian-base.dockerfile b/docker/debian-base.dockerfile index e7c51ded40e..dc7787d2f40 100644 --- a/docker/debian-base.dockerfile +++ b/docker/debian-base.dockerfile @@ -1,6 +1,4 @@ -# DON'T UPDATE TO node:14-bullseye-slim, see #372. -# If the image changed, the second stage image should be changed too -FROM node:16-buster-slim +FROM node:18-bullseye-slim ARG TARGETPLATFORM WORKDIR /app @@ -15,6 +13,8 @@ RUN apt update && \ rm -rf /var/lib/apt/lists/* && \ apt --yes autoremove +RUN npm install -g npm + # Install cloudflared # dpkg --add-architecture arm: cloudflared do not provide armhf, this is workaround. Read more: https://github.com/cloudflare/cloudflared/issues/583 COPY extra/download-cloudflared.js ./extra/download-cloudflared.js