Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update libssl and openssl versions #3728

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rabbitmq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion svc-bgs-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down