install libressl
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Memiks 2019-12-06 12:13:49 +09:00
parent 4d1ecd866f
commit eae8a3cf82

View File

@ -7,9 +7,16 @@ RUN apt -qy update
RUN apt-get install -qy \ RUN apt-get install -qy \
build-essential linux-libc-dev \ build-essential linux-libc-dev \
autoconf automake autoconf bison libevent libressl libasr cmake libtool pkg-config \ autoconf automake autoconf bison libevent-dev libasr-dev cmake libtool pkg-config \
git curl gawk tar bzip2 ncompress xz-utils tree git curl gawk tar bzip2 ncompress xz-utils tree wget
WORKDIR /tmp
ENV LIBRESSLVERSION=libressl-3.0.2
RUN wget -O ${LIBRESSLVERSION}.tar.gz https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${LIBRESSLVERSION}.tar.gz
RUN tar xf ${LIBRESSLVERSION}.tar.gz
RUN cd ${LIBRESSLVERSION}
RUN ./configure --prefix=/usr/local/libressl --with-openssldir=/usr/local/libressl
RUN make && make install
# Override shell for bash-y debugging goodness # Override shell for bash-y debugging goodness
SHELL ["/bin/bash", "-exc"] SHELL ["/bin/bash", "-exc"]