From e6d01001af10c303bc10d1ba9a3cbc3f3dd84218 Mon Sep 17 00:00:00 2001 From: Salim B Date: Sat, 2 Nov 2024 22:03:56 +0100 Subject: [PATCH] chore: update Node.js builder image `node:18.20-alpine` is the currently latest tag of the v18 major release line. To lower update maintenance burden and automatically pick up the latest minor release, just use the `node:18-alpine` tag. --- packages/nocodb/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nocodb/Dockerfile b/packages/nocodb/Dockerfile index 9c4be73d02..ad061035f2 100644 --- a/packages/nocodb/Dockerfile +++ b/packages/nocodb/Dockerfile @@ -17,7 +17,7 @@ RUN cp $GOPATH/bin/litestream /usr/src/lt ########### # Builder ########### -FROM node:18.19.1-alpine as builder +FROM node:18-alpine as builder WORKDIR /usr/src/app # install node-gyp dependencies