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

use OpenSSL 3.2.3 #12729

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
10 changes: 5 additions & 5 deletions projects/freeradius/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@

FROM gcr.io/oss-fuzz-base/base-builder
RUN echo "deb http://packages.networkradius.com/extras/ubuntu/focal focal main" > /etc/apt/sources.list.d/networkradius-extras.list
RUN apt-get update
RUN apt-get install -y gnupg
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BE18FC5A41382202
RUN apt-get update
RUN apt-get install -y libtalloc-dev libkqueue-dev libunwind-dev

# OpenSSL 1.1
ARG OPENSSL_VERSION=1.1.1g
ARG OPENSSL_HASH=ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46
# OpenSSL 3.2
ARG OPENSSL_VERSION=3.2.3
ARG OPENSSL_HASH=52b5f1c6b8022bc5868c308c54fb77705e702d6c6f4594f99a0df216acf46239
RUN set -ex \
&& curl -s -O https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz \
&& curl -s -O https://github.com/openssl/openssl/releases/download/openssl-3.2.3/openssl-3.2.3.tar.gz \
&& echo "${OPENSSL_HASH} openssl-${OPENSSL_VERSION}.tar.gz" | sha256sum -c \
&& tar -xzf openssl-${OPENSSL_VERSION}.tar.gz \
&& cd openssl-${OPENSSL_VERSION} \
Expand Down