From 43df23a32823e787c0c71bb72206da33c76b9943 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 22:53:05 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- admin/Dockerfile | 2 +- api/Dockerfile | 4 ++-- public/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index 9e520382..e45911c2 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -4,7 +4,7 @@ ARG port=4200 # Build container -FROM node:20.16.0-alpine3.19 AS build +FROM node:20.18.0-alpine3.19 AS build # Install dependencies and build static content ARG build_dir diff --git a/api/Dockerfile b/api/Dockerfile index bfe2d052..4f87cfe2 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,5 +1,5 @@ # RedHat UBI 8 with nodejs 20 -FROM registry.access.redhat.com/ubi8/nodejs-20:1-58 AS builder +FROM registry.access.redhat.com/ubi8/nodejs-20:1-64 AS builder # Install packages, build and keep only prod packages WORKDIR /app @@ -11,7 +11,7 @@ RUN dnf install -y ca-certificates && \ # Deployment container -FROM registry.access.redhat.com/ubi8/ubi:8.10-1054 +FROM registry.access.redhat.com/ubi8/ubi:8.10-1088 # Node packages and dependencies COPY --from=builder /usr/bin/node /usr/bin/ diff --git a/public/Dockerfile b/public/Dockerfile index 462c83ab..6c2252ea 100644 --- a/public/Dockerfile +++ b/public/Dockerfile @@ -3,7 +3,7 @@ ARG build_dir=public ARG port=4300 # Build container -FROM node:20.16.0-alpine3.19 AS build +FROM node:20.18.0-alpine3.19 AS build # Install dependencies and build static content ARG build_dir