Remove OpenSSL from master

This commit is contained in:
Joe Groocock 2017-05-12 15:44:09 +01:00
parent 34fefaf132
commit b0f891146d

View File

@ -64,15 +64,6 @@ RUN cp -d glibc-build/out/lib/*.so /output/lib && \
echo '/usr/lib' > /output/etc/ld.so.conf && \
ldconfig -r /output
# Build and install openssl
ARG DESTDIR=/output/libressl
RUN curl -L https://www.openssl.org/source/openssl-1.1.0e.tar.gz | \
tar xz -C /tmp --strip-components=1 && \
./config --prefix=/output && \
make install_sw && \
rm /output/lib/*.a && \
rm -r /output/include
# =============
FROM scratch