74 lines
2.2 KiB
Docker
74 lines
2.2 KiB
Docker
# Copyright (C) 2006-2017 wolfSSL Inc.
|
|
#
|
|
# This file is part of wolfSSL.
|
|
#
|
|
# wolfSSL is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# wolfSSL is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
|
|
FROM debian
|
|
|
|
ARG WOLFSSL_VERSION
|
|
|
|
ARG WOLFSSL_MAKE_INSTALL
|
|
|
|
RUN set -eux \
|
|
# installing build deps
|
|
&& buildDeps=' \
|
|
autoconf \
|
|
automake \
|
|
ca-certificates \
|
|
curl \
|
|
g++ \
|
|
libtool \
|
|
make \
|
|
unzip \
|
|
' \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends $buildDeps \
|
|
&& rm -r /var/lib/apt/lists/* \
|
|
|
|
# downloading source files
|
|
&& curl \
|
|
-LS https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}.zip \
|
|
-o v${WOLFSSL_VERSION}.zip \
|
|
&& unzip v${WOLFSSL_VERSION}.zip \
|
|
&& rm v${WOLFSSL_VERSION}.zip \
|
|
|
|
# building and installing wolfssl
|
|
&& cd wolfssl-${WOLFSSL_VERSION} \
|
|
&& ./autogen.sh \
|
|
&& ./configure \
|
|
--build=x86_64-linux-gnu \
|
|
--prefix=/usr \
|
|
--includedir=\${prefix}/include \
|
|
--mandir=\${prefix}/share/man \
|
|
--infodir=\${prefix}/share/info \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libdir=\${prefix}/lib/x86_64-linux-gnu \
|
|
--libexecdir=\${prefix}/lib/x86_64-linux-gnu \
|
|
--disable-dependency-tracking \
|
|
--enable-sha224 \
|
|
--enable-distro \
|
|
--disable-examples \
|
|
--disable-silent-rules \
|
|
&& make \
|
|
&& make ${WOLFSSL_MAKE_INSTALL} \
|
|
&& ldconfig \
|
|
|
|
# cleaning building deps
|
|
&& cd .. \
|
|
&& rm -r wolfssl-${WOLFSSL_VERSION} \
|
|
&& apt-get purge -y --auto-remove $buildDeps
|