Skip to content

Commit 08ddccf

Browse files
committed
ansible: add openssl-3.5.0-alpha1 to containers
Add OpenSSL 3.5.0-alpha1 to sharedlibs containers.
1 parent aac5a79 commit 08ddccf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ansible/roles/docker/templates/ubuntu2204_sharedlibs.Dockerfile.j2

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,17 @@ RUN mkdir -p /tmp/openssl-$OPENSSL32VER && \
124124
make install && \
125125
rm -rf /tmp/openssl-$OPENSSL32VER
126126

127+
ENV OPENSSL35VER 3.5.0-alpha1
128+
ENV OPENSSL35DIR /opt/openssl-$OPENSSL35VER
129+
130+
RUN mkdir -p /tmp/openssl-$OPENSSL35VER && \
131+
cd /tmp/openssl-$OPENSSL35VER && \
132+
curl -sL https://github.com/openssl/openssl/releases/download/openssl-$OPENSSL35VER/openssl-$OPENSSL35VER.tar.gz | tar zxv --strip=1 && \
133+
./config --prefix=$OPENSSL35DIR && \
134+
make -j $JOBS && \
135+
make install && \
136+
rm -rf /tmp/openssl-$OPENSSL35VER
137+
127138
ENV ZLIBVER 1.2.13
128139
ENV ZLIB12DIR /opt/zlib_$ZLIBVER
129140

0 commit comments

Comments
 (0)