Skip to content

Commit

Permalink
ansible: add OpenSSL 3.2 to sharedlibs containers
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau committed Jun 14, 2024
1 parent ccf334c commit 19af747
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ansible/roles/docker/templates/ubuntu2204_sharedlibs.Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,17 @@ RUN mkdir -p /tmp/openssl-$OPENSSL31VER && \
make install && \
rm -rf /tmp/openssl-$OPENSSL31VER

ENV OPENSSL32VER 3.2.2
ENV OPENSSL32DIR /opt/openssl-$OPENSSL32VER

RUN mkdir -p /tmp/openssl-$OPENSSL32VER && \
cd /tmp/openssl-$OPENSSL32VER && \
curl -sL https://www.openssl.org/source/openssl-$OPENSSL32VER.tar.gz | tar zxv --strip=1 && \
./config --prefix=$OPENSSL32DIR && \
make -j $JOBS && \
make install && \
rm -rf /tmp/openssl-$OPENSSL32VER

ENV ZLIBVER 1.2.13
ENV ZLIB12DIR /opt/zlib_$ZLIBVER

Expand Down

0 comments on commit 19af747

Please sign in to comment.