2023-11-01 03:32:09 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018-2023 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
|
|
# according to those terms.
|
|
|
|
|
2022-03-27 11:21:15 +00:00
|
|
|
# This Docker image can change from one build to another, because the upstream
|
|
|
|
# Debian/Ubuntu package index is continuously updated and we have to run
|
|
|
|
# `apt-get update` in here.
|
|
|
|
#
|
|
|
|
# The only way to make this a part of our reproducible build system is to build
|
|
|
|
# it once, upload it to Docker Hub and make sure it's being pulled regularly so
|
|
|
|
# it's not deleted after 6 months of inactivity.
|
|
|
|
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive TZ="Etc/UTC"
|
|
|
|
RUN \
|
|
|
|
apt-get -qq update \
|
|
|
|
&& apt-get -qq -y install git gnupg software-properties-common lsb curl cmake &>/dev/null \
|
|
|
|
&& apt-get -qq -y install \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
autopoint \
|
|
|
|
bison \
|
|
|
|
bzip2 \
|
|
|
|
flex \
|
|
|
|
g++ \
|
|
|
|
g++-multilib \
|
|
|
|
gettext \
|
|
|
|
gperf \
|
|
|
|
intltool \
|
|
|
|
libc6-dev-i386 \
|
|
|
|
libltdl-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool-bin \
|
|
|
|
lzip \
|
|
|
|
make \
|
|
|
|
openssl \
|
|
|
|
p7zip-full \
|
|
|
|
patch \
|
|
|
|
perl \
|
|
|
|
python \
|
|
|
|
ruby \
|
|
|
|
sed \
|
|
|
|
unzip \
|
|
|
|
wget \
|
|
|
|
xz-utils &>/dev/null \
|
|
|
|
&& apt-get -qq clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
|
|
|
&& git clone --depth 1 https://github.com/mxe/mxe.git /opt/mxe \
|
|
|
|
&& cd /opt/mxe \
|
|
|
|
&& make -j $(nproc) MXE_TARGETS='x86_64-w64-mingw32.static' MXE_USE_CCACHE='' DONT_CHECK_REQUIREMENTS=1 cc \
|
|
|
|
&& rm -rf /opt/mxe/.log /opt/mxe/pkg
|
|
|
|
|