compile opensmtpd
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Memiks 2019-12-06 12:21:37 +09:00
parent 29adc939fe
commit 85fdb56e87

View File

@ -20,6 +20,16 @@ WORKDIR /tmp/${LIBRESSLVERSION}
RUN ./configure --prefix=/usr/local/libressl --with-openssldir=/usr/local/libressl
RUN make && make install
WORKDIR /tmp
RUN git clone -b portable git://github.com/OpenSMTPD/OpenSMTPD.git opensmtpd
WORKDIR /tmp/opensmtpd
RUN ./bootstrap \
&& ./configure \
--with-libssl=/usr/local/libressl
RUN make && make install
# Override shell for bash-y debugging goodness
SHELL ["/bin/bash", "-exc"]