2021-10-12 01:57:06 +02:00
FROM ubuntu:focal
# Needed to prevent tzdata hanging while expecting user input
ENV DEBIAN_FRONTEND = "noninteractive" TZ = "Europe/London"
2018-07-12 15:28:59 +02:00
# Build and base stuff
# (zlib1g-dev and libssl-dev are needed for the Qt host binary builds, but should not be used by target binaries)
2020-03-27 22:58:51 +01:00
ENV APT_ARGS = "-y --no-install-recommends --no-upgrade"
2021-12-30 19:44:13 +01:00
RUN dpkg --add-architecture i386
RUN apt-get update && apt-get install $APT_ARGS \
autotools-dev \
automake \
autoconf \
2021-11-25 05:02:50 +01:00
bison \
2021-12-30 19:44:13 +01:00
build-essential \
bsdmainutils \
curl \
ccache \
2022-03-17 14:51:22 +01:00
clang \
2021-12-30 19:44:13 +01:00
cmake \
git \
g++ \
wget \
unzip \
libtool \
libssl-dev \
m4 \
pkg-config \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
zlib1g-dev
2018-07-12 15:28:59 +02:00
# Python stuff
2021-12-30 19:44:13 +01:00
RUN pip3 install \
codespell = = 1.17.1 \
flake8 = = 3.8.3 \
jinja2 \
pyzmq \
vulture = = 2.3 \
2022-04-27 20:14:40 +02:00
yq \
multiprocess
2018-07-12 15:28:59 +02:00
# dash_hash
2021-12-30 19:44:13 +01:00
RUN git clone --depth 1 --no-tags https://github.com/dashpay/dash_hash
2018-07-12 15:28:59 +02:00
RUN cd dash_hash && python3 setup.py install
ARG USER_ID = 1000
ARG GROUP_ID = 1000
# add user with specified (or default) user/group ids
ENV USER_ID ${ USER_ID }
ENV GROUP_ID ${ GROUP_ID }
RUN groupadd -g ${ GROUP_ID } dash
RUN useradd -u ${ USER_ID } -g dash -s /bin/bash -m -d /dash dash
2020-03-27 22:58:51 +01:00
# Packages needed for all target builds
2021-12-30 19:44:13 +01:00
RUN apt-get update && apt-get install $APT_ARGS \
bc \
gawk \
g++-9-multilib \
g++-arm-linux-gnueabihf \
g++-mingw-w64-x86-64 \
imagemagick \
jq \
libcap-dev \
librsvg2-bin \
libz-dev \
libbz2-dev \
libtiff-tools \
libncurses5 \
nsis \
python3-zmq \
parallel \
wine-stable \
wine32 \
wine64 \
xorriso \
&& rm -rf /var/lib/apt/lists/*
2020-03-27 22:58:51 +01:00
2021-12-28 22:54:50 +01:00
ARG CPPCHECK_VERSION = 2 .4
RUN curl -sL " https://github.com/danmar/cppcheck/archive/ ${ CPPCHECK_VERSION } .tar.gz " | tar -xvzf - --directory /tmp/
RUN cd /tmp/cppcheck-${ CPPCHECK_VERSION } && mkdir build && cd build && cmake .. && cmake --build . -j 8
ENV PATH " /tmp/cppcheck- ${ CPPCHECK_VERSION } /build/bin: ${ PATH } "
RUN mkdir /usr/local/share/Cppcheck && ln -s /tmp/cppcheck-${ CPPCHECK_VERSION } /cfg/ /usr/local/share/Cppcheck/cfg
2020-06-25 17:08:37 +02:00
ARG SHELLCHECK_VERSION = v0.7.1
RUN curl -sL " https://github.com/koalaman/shellcheck/releases/download/ ${ SHELLCHECK_VERSION } /shellcheck- ${ SHELLCHECK_VERSION } .linux.x86_64.tar.xz " | tar --xz -xf - --directory /tmp/
2021-09-10 01:32:30 +02:00
ENV PATH " /tmp/shellcheck- ${ SHELLCHECK_VERSION } : ${ PATH } "
2020-03-27 22:58:51 +01:00
# This is a hack. It is needed because gcc-multilib and g++-multilib are conflicting with g++-arm-linux-gnueabihf. This is
# due to gcc-multilib installing the following symbolic link, which is needed for -m32 support. However, this causes
2021-07-17 21:15:21 +02:00
# arm builds to also have the asm folder implicitly in the include search path. This is kind of ok, because the asm folder
2020-03-27 22:58:51 +01:00
# for arm has precedence.
RUN ln -s x86_64-linux-gnu/asm /usr/include/asm
2018-07-12 15:28:59 +02:00
# Make sure std::thread and friends is available
RUN \
update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix; \
update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix; \
exit 0
RUN mkdir /dash-src && \
mkdir -p /cache/ccache && \
mkdir /cache/depends && \
mkdir /cache/sdk-sources && \
chown $USER_ID :$GROUP_ID /dash-src && \
chown $USER_ID :$GROUP_ID /cache && \
chown $USER_ID :$GROUP_ID /cache -R
2021-12-16 15:14:41 +01:00
2018-07-12 15:28:59 +02:00
WORKDIR /dash-src
USER dash