71 lines
1.9 KiB
Docker
71 lines
1.9 KiB
Docker
# Dockerfile
|
|
#
|
|
# 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
|
|
|
|
# installing build deps
|
|
RUN set -eux \
|
|
&& 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/*
|
|
|
|
ARG WOLFSSL_VERSION
|
|
|
|
# downloading source files
|
|
RUN set -eux \
|
|
&& 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
|
|
RUN set -eux \
|
|
&& cd wolfssl-${WOLFSSL_VERSION} \
|
|
&& ./autogen.sh \
|
|
&& ./configure \
|
|
--disable-dependency-tracking \
|
|
--enable-sha224 \
|
|
--enable-distro \
|
|
--disable-silent-rules \
|
|
&& make \
|
|
&& make check
|
|
|
|
# create testing package
|
|
RUN set -eux \
|
|
&& mkdir /wolfssl \
|
|
&& tar -czvf /wolfssl/examples.tar.gz \
|
|
-C /wolfssl-${WOLFSSL_VERSION} \
|
|
examples/client/client \
|
|
examples/server/server \
|
|
examples/client/.libs \
|
|
examples/server/.libs \
|
|
certs
|