From c34159e4ceaf8d4659834faad555cf7ca91c1578 Mon Sep 17 00:00:00 2001 From: broskj <170366505+brostk@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:55:55 -0500 Subject: [PATCH 1/3] update libssl and openssl versions --- rabbitmq/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rabbitmq/Dockerfile b/rabbitmq/Dockerfile index a96814ef6..d8c562258 100644 --- a/rabbitmq/Dockerfile +++ b/rabbitmq/Dockerfile @@ -9,8 +9,8 @@ USER root # Upgrade libssl3 and openssl to the specific version RUN apt-get update \ && apt-get install -y --no-install-recommends \ - libssl3=3.0.14-1~deb12u2 \ - openssl=3.0.14-1~deb12u2 \ + libssl3=3.0.15-1~deb12u1 \ + openssl=3.0.15-1~deb12u1 \ && rm -rf /var/lib/apt/lists/* # Change ownership and permissions of configuration files From 5a67dd55e13e952d169001dc6125625521d54f30 Mon Sep 17 00:00:00 2001 From: broskj <170366505+brostk@users.noreply.github.com> Date: Tue, 12 Nov 2024 13:09:37 -0500 Subject: [PATCH 2/3] bump ruby-dev --- svc-bgs-api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc-bgs-api/Dockerfile b/svc-bgs-api/Dockerfile index 4aec01093..e615fdf1f 100644 --- a/svc-bgs-api/Dockerfile +++ b/svc-bgs-api/Dockerfile @@ -4,7 +4,7 @@ FROM ruby:3.3.6-alpine3.19 # https://www.cloudbees.com/blog/build-minimal-docker-container-ruby-apps # hadolint ignore=DL3018 -RUN apk update && apk upgrade && apk --no-cache add git ruby-dev=3.2.4-r0 curl-dev build-base=0.5-r3 openssl && rm -rf /var/cache/apk/* +RUN apk update && apk upgrade && apk --no-cache add git ruby-dev=3.2.6-r0 curl-dev build-base=0.5-r3 openssl && rm -rf /var/cache/apk/* WORKDIR /app From 7121bd2654183de0ae35525acbc2bcdc3b7af56d Mon Sep 17 00:00:00 2001 From: broskj <170366505+brostk@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:40:37 -0500 Subject: [PATCH 3/3] update dockerfile --- db-init/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db-init/Dockerfile b/db-init/Dockerfile index 592872bba..5d2478574 100644 --- a/db-init/Dockerfile +++ b/db-init/Dockerfile @@ -4,7 +4,7 @@ FROM flyway/flyway:10.19-alpine RUN <