aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-10-14 11:00:27 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-10-17 14:01:32 +0900
commitc1b359eb80be0c4df87b7369ed2e2f1340dabcad (patch)
tree057f0e5026d85fe4c1ab02c039445b0af1455ddc /tool
parent31bb6fe25e121c902d9b5348f70ac63cb51999dd (diff)
downloadruby-openssl-c1b359eb80be0c4df87b7369ed2e2f1340dabcad.tar.gz
Drop support for LibreSSL < 2.3topic/docker-image-update
We have changed the support policy for LibreSSL: we now support only maintained stable branches. Quoting from libressl.org[1]: > LibreSSL transitions to a new stable release branch every 6 months in > coordination with the OpenBSD development schedule. LibreSSL stable > branches are updated for 1 year after their corresponding OpenBSD > branch is tagged for release. So, LibreSSL 2.2, which was shipped by OpenBSD 5.8 released on 2015-08, is no longer supported officially by the OpenBSD team. [1] http://www.libressl.org/releases.html
Diffstat (limited to 'tool')
-rw-r--r--tool/ruby-openssl-docker/Dockerfile14
1 files changed, 1 insertions, 13 deletions
diff --git a/tool/ruby-openssl-docker/Dockerfile b/tool/ruby-openssl-docker/Dockerfile
index e948a609..a1518a9c 100644
--- a/tool/ruby-openssl-docker/Dockerfile
+++ b/tool/ruby-openssl-docker/Dockerfile
@@ -50,19 +50,7 @@ RUN curl -s https://www.openssl.org/source/openssl-1.1.0b.tar.gz | tar -C /build
debug-linux-x86_64 && \
make && make install_sw
-# Supported libressl versions: 2.1, 2.2, 2.3, 2.4, 2.5
-RUN curl -s http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.1.10.tar.gz | tar -C /build/openssl -xzf -
-RUN cd /build/openssl/libressl-2.1.10 && \
- ./configure \
- --prefix=/opt/openssl/libressl-2.1 && \
- make && make install
-
-RUN curl -s http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.9.tar.gz | tar -C /build/openssl -xzf -
-RUN cd /build/openssl/libressl-2.2.9 && \
- ./configure \
- --prefix=/opt/openssl/libressl-2.2 && \
- make && make install
-
+# Supported libressl versions: 2.3, 2.4, 2.5
RUN curl -s http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.8.tar.gz | tar -C /build/openssl -xzf -
RUN cd /build/openssl/libressl-2.3.8 && \
./configure \