From e7e76fadabd8326ee1ec0fb04498aa4be7e05d53 Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Tue, 5 Sep 2023 16:29:32 -0700 Subject: [PATCH] Bump node to 18 since 16 is EOL later this month --- 5/alpine/Dockerfile | 3 +-- 5/debian/Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/5/alpine/Dockerfile b/5/alpine/Dockerfile index 45e29952..ecb727a7 100644 --- a/5/alpine/Dockerfile +++ b/5/alpine/Dockerfile @@ -1,7 +1,6 @@ # https://docs.ghost.org/faq/node-versions/ # https://github.com/nodejs/Release (looking for "LTS") -# https://github.com/TryGhost/Ghost/blob/v5.0.0/package.json#L54 -FROM node:16-alpine3.17 +FROM node:18-alpine3.17 # grab su-exec for easy step-down from root RUN apk add --no-cache 'su-exec>=0.2' diff --git a/5/debian/Dockerfile b/5/debian/Dockerfile index 67a9b829..ff098608 100644 --- a/5/debian/Dockerfile +++ b/5/debian/Dockerfile @@ -1,7 +1,6 @@ # https://docs.ghost.org/faq/node-versions/ # https://github.com/nodejs/Release (looking for "LTS") -# https://github.com/TryGhost/Ghost/blob/v4.1.2/package.json#L38 -FROM node:16-bullseye-slim +FROM node:18-bullseye-slim # grab gosu for easy step-down from root # https://github.com/tianon/gosu/releases