Skip to content

Commit 2ed5955

Browse files
authored
Merge pull request #306 from jfuermannPG/fix/stunnel-5.56
Update ubuntu/standard/3.0 to use stunnel 5.56
2 parents 30d5dbb + e2fba14 commit 2ed5955

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ubuntu/standard/3.0/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -565,16 +565,16 @@ RUN set -ex \
565565

566566
RUN set -ex \
567567
&& apt-get install -y openssl \
568-
&& curl -o stunnel-5.55.tar.gz https://www.stunnel.org/downloads/stunnel-5.55.tar.gz \
569-
&& tar xvfz stunnel-5.55.tar.gz \
570-
&& cd stunnel-5.55 \
568+
&& curl -o stunnel-5.56.tar.gz https://www.stunnel.org/downloads/stunnel-5.56.tar.gz \
569+
&& tar xvfz stunnel-5.56.tar.gz \
570+
&& cd stunnel-5.56 \
571571
&& ./configure \
572572
&& make \
573573
&& make install \
574574
&& openssl genrsa -out key.pem 2048 \
575575
&& openssl req -new -x509 -key key.pem -out cert.pem -days 1095 -subj "/C=US/ST=Washington/L=Seattle/O=Amazon/OU=Codebuild/CN=codebuild.amazon.com" \
576576
&& cat key.pem cert.pem >> /usr/local/etc/stunnel/stunnel.pem \
577-
&& cd .. ; rm -rf stunnel-5.55* \
577+
&& cd .. ; rm -rf stunnel-5.56* \
578578
&& apt-get clean
579579

580580
ENTRYPOINT ["dockerd-entrypoint.sh"]

0 commit comments

Comments
 (0)