workdir change
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Memiks 2019-12-06 12:17:33 +09:00
parent eae8a3cf82
commit 29adc939fe

View File

@ -14,7 +14,9 @@ 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}
WORKDIR /tmp/${LIBRESSLVERSION}
RUN ./configure --prefix=/usr/local/libressl --with-openssldir=/usr/local/libressl
RUN make && make install