From 4ccf263481fbf74289d3c105a23103eededb79ae Mon Sep 17 00:00:00 2001
From: Louis Lam <louislam@users.noreply.github.com>
Date: Mon, 16 Oct 2023 00:27:47 +0800
Subject: [PATCH] Update docker image base from Node.js 16 to Node.js 18 for
 Uptime Kuma v1 (#3901)

---
 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 244e6c5fb..bd609830a 100644
--- a/docker/debian-base.dockerfile
+++ b/docker/debian-base.dockerfile
@@ -1,6 +1,6 @@
-# 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
+# DON'T UPDATE TO bullseye-slim, see #372.
+# There is no 20-buster-slim for armv7 unfortunately, 18-buster-slim is the last one for Uptime Kuma v1.
+FROM node:18-buster-slim
 ARG TARGETPLATFORM
 
 WORKDIR /app