Skip to content

Commit 61b074e

Browse files
authored
update OpenSSL in sharedlib containers (#2759)
Update sharedlibs container to OpenSSL 1.1.1l and OpenSSL 3.0.0+quic.
1 parent bdf06e9 commit 61b074e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,21 @@ RUN mkdir -p /tmp/openssl_1.1.0l && \
6666
make install && \
6767
rm -rf /tmp/openssl_1.1.0l
6868

69-
ENV OPENSSL111DIR /opt/openssl-1.1.1k
69+
ENV OPENSSL111DIR /opt/openssl-1.1.1l
7070

71-
RUN mkdir -p /tmp/openssl_1.1.1k && \
72-
cd /tmp/openssl_1.1.1k && \
73-
curl -sL https://www.openssl.org/source/openssl-1.1.1k.tar.gz | tar zxv --strip=1 && \
71+
RUN mkdir -p /tmp/openssl_1.1.1l && \
72+
cd /tmp/openssl_1.1.1l && \
73+
curl -sL https://www.openssl.org/source/openssl-1.1.1l.tar.gz | tar zxv --strip=1 && \
7474
./config --prefix=$OPENSSL111DIR && \
7575
make -j 6 && \
7676
make install && \
77-
rm -rf /tmp/openssl_1.1.1k
77+
rm -rf /tmp/openssl_1.1.1l
7878

7979
ENV OPENSSL300DIR /opt/openssl-3.0.0
8080

8181
RUN mkdir -p /tmp/openssl_3.0.0 && \
8282
cd /tmp/openssl_3.0.0 && \
83-
git clone https://github.com/quictls/openssl.git -b openssl-3.0.0-beta1+quic --depth 1 && \
83+
git clone https://github.com/quictls/openssl.git -b openssl-3.0.0+quic --depth 1 && \
8484
cd openssl && \
8585
./config --prefix=$OPENSSL300DIR && \
8686
make -j 6 && \

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ RUN mkdir -p /tmp/openssl_1.1.0l && \
6464
make install && \
6565
rm -rf /tmp/openssl_1.1.0l
6666

67-
ENV OPENSSL111DIR /opt/openssl-1.1.1k
67+
ENV OPENSSL111DIR /opt/openssl-1.1.1l
6868

69-
RUN mkdir -p /tmp/openssl_1.1.1k && \
70-
cd /tmp/openssl_1.1.1k && \
71-
curl -sL https://www.openssl.org/source/openssl-1.1.1k.tar.gz | tar zxv --strip=1 && \
69+
RUN mkdir -p /tmp/openssl_1.1.1l && \
70+
cd /tmp/openssl_1.1.1l && \
71+
curl -sL https://www.openssl.org/source/openssl-1.1.1l.tar.gz | tar zxv --strip=1 && \
7272
./config --prefix=$OPENSSL111DIR && \
7373
make -j 6 && \
7474
make install && \
75-
rm -rf /tmp/openssl_1.1.1k
75+
rm -rf /tmp/openssl_1.1.1l
7676

7777
ENV OPENSSL300DIR /opt/openssl-3.0.0
7878

7979
RUN mkdir -p /tmp/openssl_3.0.0 && \
8080
cd /tmp/openssl_3.0.0 && \
81-
git clone https://github.com/quictls/openssl.git -b openssl-3.0.0-alpha16+quic --depth 1 && \
81+
git clone https://github.com/quictls/openssl.git -b openssl-3.0.0+quic --depth 1 && \
8282
cd openssl && \
8383
./config --prefix=$OPENSSL300DIR && \
8484
make -j 6 && \

0 commit comments

Comments
 (0)