Skip to content

Commit

Permalink
installing openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshGandhi-AWS committed Dec 7, 2023
1 parent 76559d2 commit 83a381e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/docker-images/integration-tests/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@ RUN apt-get update -qq \
zlib1g-dev \
&& apt-get clean


###############################################################################
# Install OpenSSL 3.0.8
###############################################################################
WORKDIR /tmp
RUN wget https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz \
&& tar -zxvf openssl-${OPENSSL_VERSION}.tar.gz \
&& cd openssl-${OPENSSL_VERSION} \
&& ./config \
&& make \
&& make install \
&& ldconfig

###############################################################################
# Install pre-built CMake
###############################################################################
Expand Down

0 comments on commit 83a381e

Please sign in to comment.