From cf973523eee5caab2cc804f0d0e1aaba7a3fae2d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 19:21:03 +0000 Subject: [PATCH] QD-8148 Update Node.js to v20 --- 2023.2/base/debian.Dockerfile | 2 +- 2023.2/base/debian.js.Dockerfile | 2 +- 2023.2/base/dotnet.Dockerfile | 2 +- 2023.2/base/go.Dockerfile | 2 +- 2023.2/base/js.Dockerfile | 2 +- 2023.2/base/php.Dockerfile | 2 +- 2023.2/base/python.js.Dockerfile | 2 +- 2023.2/base/ruby.Dockerfile | 2 +- 2023.2/dotnet/Dockerfile | 2 +- 2023.2/go/Dockerfile | 2 +- 2023.2/js/Dockerfile | 2 +- 2023.2/jvm-community/Dockerfile | 2 +- 2023.2/jvm/Dockerfile | 2 +- 2023.2/php/Dockerfile | 2 +- 2023.2/python-community/Dockerfile | 2 +- 2023.2/python/Dockerfile | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/2023.2/base/debian.Dockerfile b/2023.2/base/debian.Dockerfile index afd25c5d..fa4310dd 100644 --- a/2023.2/base/debian.Dockerfile +++ b/2023.2/base/debian.Dockerfile @@ -1,5 +1,5 @@ ARG BASE_TAG="bullseye-slim" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debian:$BASE_TAG diff --git a/2023.2/base/debian.js.Dockerfile b/2023.2/base/debian.js.Dockerfile index af5b1964..86dcc1df 100644 --- a/2023.2/base/debian.js.Dockerfile +++ b/2023.2/base/debian.js.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debianbase diff --git a/2023.2/base/dotnet.Dockerfile b/2023.2/base/dotnet.Dockerfile index f6639176..c49e3e24 100644 --- a/2023.2/base/dotnet.Dockerfile +++ b/2023.2/base/dotnet.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" ARG DOTNET_BASE_TAG="6.0-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM mcr.microsoft.com/dotnet/sdk:$DOTNET_BASE_TAG diff --git a/2023.2/base/go.Dockerfile b/2023.2/base/go.Dockerfile index c6a18a39..3fa67306 100644 --- a/2023.2/base/go.Dockerfile +++ b/2023.2/base/go.Dockerfile @@ -1,5 +1,5 @@ ARG GO_TAG="1.21-bullseye" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM golang:$GO_TAG diff --git a/2023.2/base/js.Dockerfile b/2023.2/base/js.Dockerfile index a761ba65..05743248 100644 --- a/2023.2/base/js.Dockerfile +++ b/2023.2/base/js.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG ENV HOME="/root" \ diff --git a/2023.2/base/php.Dockerfile b/2023.2/base/php.Dockerfile index 54ba0665..48f8ac14 100644 --- a/2023.2/base/php.Dockerfile +++ b/2023.2/base/php.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" ARG PHP_TAG="8.2-cli-bullseye" ARG COMPOSER_TAG="2.6.3" FROM node:$NODE_TAG AS node_base diff --git a/2023.2/base/python.js.Dockerfile b/2023.2/base/python.js.Dockerfile index eb8b3779..902690cb 100644 --- a/2023.2/base/python.js.Dockerfile +++ b/2023.2/base/python.js.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM pythonbase diff --git a/2023.2/base/ruby.Dockerfile b/2023.2/base/ruby.Dockerfile index f58d82cb..532ee8b8 100644 --- a/2023.2/base/ruby.Dockerfile +++ b/2023.2/base/ruby.Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" ARG RUBY_TAG="3.2-slim-bullseye" FROM node:$NODE_TAG AS node_base diff --git a/2023.2/dotnet/Dockerfile b/2023.2/dotnet/Dockerfile index 9420b193..51f05f24 100644 --- a/2023.2/dotnet/Dockerfile +++ b/2023.2/dotnet/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" ARG DOTNET_BASE_TAG="6.0-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM mcr.microsoft.com/dotnet/sdk:$DOTNET_BASE_TAG diff --git a/2023.2/go/Dockerfile b/2023.2/go/Dockerfile index 8006b8db..ff9d3d53 100644 --- a/2023.2/go/Dockerfile +++ b/2023.2/go/Dockerfile @@ -1,5 +1,5 @@ ARG GO_TAG="1.21-bullseye" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM golang:$GO_TAG diff --git a/2023.2/js/Dockerfile b/2023.2/js/Dockerfile index e9c24c8d..4655eb58 100644 --- a/2023.2/js/Dockerfile +++ b/2023.2/js/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG ENV HOME="/root" \ diff --git a/2023.2/jvm-community/Dockerfile b/2023.2/jvm-community/Dockerfile index e8e6bbac..dd47086f 100644 --- a/2023.2/jvm-community/Dockerfile +++ b/2023.2/jvm-community/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_TAG="bullseye-slim" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debian:$BASE_TAG diff --git a/2023.2/jvm/Dockerfile b/2023.2/jvm/Dockerfile index 57d4c6db..8e959156 100644 --- a/2023.2/jvm/Dockerfile +++ b/2023.2/jvm/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_TAG="bullseye-slim" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debian:$BASE_TAG diff --git a/2023.2/php/Dockerfile b/2023.2/php/Dockerfile index e0b8b4a7..d5543731 100644 --- a/2023.2/php/Dockerfile +++ b/2023.2/php/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" ARG PHP_TAG="8.2-cli-bullseye" ARG COMPOSER_TAG="2.6.3" FROM node:$NODE_TAG AS node_base diff --git a/2023.2/python-community/Dockerfile b/2023.2/python-community/Dockerfile index 0a2b3718..37a5a7e7 100644 --- a/2023.2/python-community/Dockerfile +++ b/2023.2/python-community/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_TAG="bullseye-slim" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debian:$BASE_TAG diff --git a/2023.2/python/Dockerfile b/2023.2/python/Dockerfile index 75330d06..99f78a87 100644 --- a/2023.2/python/Dockerfile +++ b/2023.2/python/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_TAG="bullseye-slim" -ARG NODE_TAG="16-bullseye-slim" +ARG NODE_TAG="20-bullseye-slim" FROM node:$NODE_TAG AS node_base FROM debian:$BASE_TAG