2017-11-04 00:56:05 +00:00
|
|
|
# initialize from the image
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
FROM debian:10
|
2017-11-04 00:56:05 +00:00
|
|
|
|
2019-12-01 18:07:23 +00:00
|
|
|
ARG TOOLCHAIN_FLAVOR=x86_64-linux
|
2019-08-27 14:05:22 +00:00
|
|
|
ENV TOOLCHAIN_FLAVOR=${TOOLCHAIN_FLAVOR}
|
|
|
|
|
|
|
|
ARG FULLDEPS_TESTING=0
|
|
|
|
ENV FULLDEPS_TESTING=${FULLDEPS_TESTING}
|
2018-10-12 12:13:39 +00:00
|
|
|
|
2017-11-04 00:56:05 +00:00
|
|
|
# install build tools and dependencies
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
2019-08-27 14:05:22 +00:00
|
|
|
build-essential \
|
|
|
|
check \
|
|
|
|
clang-format \
|
|
|
|
git \
|
|
|
|
graphviz \
|
|
|
|
libjpeg-dev \
|
|
|
|
libsdl2-dev \
|
|
|
|
libsdl2-image-dev \
|
|
|
|
libsodium-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libudev-dev \
|
|
|
|
libusb-1.0-0-dev \
|
|
|
|
valgrind \
|
|
|
|
wget \
|
|
|
|
zlib1g-dev
|
|
|
|
|
|
|
|
# install python 3.7.3 + pip from the image
|
|
|
|
|
|
|
|
RUN apt-get install -y \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip
|
|
|
|
|
|
|
|
# install other python versions from their sources
|
|
|
|
|
|
|
|
RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \
|
|
|
|
export PYTHON35VER="3.5.7" ; \
|
|
|
|
wget --no-verbose https://www.python.org/ftp/python/${PYTHON35VER}/Python-${PYTHON35VER}.tgz ; \
|
|
|
|
tar zxf Python-${PYTHON35VER}.tgz ; \
|
|
|
|
cd Python-${PYTHON35VER}/ && ./configure && make && make install ; \
|
|
|
|
fi
|
2019-08-13 13:39:58 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \
|
|
|
|
export PYTHON36VER="3.6.9" ; \
|
|
|
|
wget --no-verbose https://www.python.org/ftp/python/${PYTHON36VER}/Python-${PYTHON36VER}.tgz ; \
|
|
|
|
tar zxf Python-${PYTHON36VER}.tgz ; \
|
|
|
|
cd Python-${PYTHON36VER}/ && ./configure && make && make install ; \
|
|
|
|
fi
|
2019-08-13 09:20:18 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \
|
|
|
|
export PYTHON38VER="3.8.0" ; \
|
|
|
|
export PYTHONSUBVER="b3"; \
|
|
|
|
wget --no-verbose https://www.python.org/ftp/python/${PYTHON38VER}/Python-${PYTHON38VER}${PYTHONSUBVER}.tgz ; \
|
|
|
|
tar zxf Python-${PYTHON38VER}${PYTHONSUBVER}.tgz ; \
|
|
|
|
cd Python-${PYTHON38VER}${PYTHONSUBVER}/ && ./configure && make && make install ; \
|
|
|
|
fi
|
2019-08-13 09:20:18 +00:00
|
|
|
|
2020-02-06 12:21:39 +00:00
|
|
|
# remove symlinks to newly installed pythons
|
|
|
|
RUN cd /usr/local/bin; \
|
|
|
|
rm -f 2to3; \
|
|
|
|
rm -f python3; \
|
|
|
|
rm -f python3-config; \
|
|
|
|
rm -f pydoc3; \
|
|
|
|
rm -f pip3; \
|
|
|
|
rm -f pyvenv;
|
|
|
|
|
2018-10-12 12:13:39 +00:00
|
|
|
# install dependencies from toolchain source build
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN if [ "${TOOLCHAIN_FLAVOR}" = "src" ]; then \
|
2018-10-23 10:00:42 +00:00
|
|
|
apt-get install -y autoconf autogen bison dejagnu \
|
|
|
|
flex flip gawk git gperf gzip nsis \
|
|
|
|
openssh-client p7zip-full perl python-dev \
|
|
|
|
libisl-dev tcl tofrodos zip \
|
|
|
|
texinfo texlive texlive-extra-utils; \
|
|
|
|
fi
|
2018-10-12 12:13:39 +00:00
|
|
|
|
2018-01-09 20:44:42 +00:00
|
|
|
# download toolchain
|
2017-11-04 14:01:44 +00:00
|
|
|
|
2019-12-01 18:07:23 +00:00
|
|
|
ENV TOOLCHAIN_LONGVER=gcc-arm-none-eabi-9-2019-q4-major
|
|
|
|
ENV TOOLCHAIN_SUBDIR="9-2019q4/RC2.1"
|
2019-08-27 14:05:22 +00:00
|
|
|
ENV TOOLCHAIN_URL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/${TOOLCHAIN_SUBDIR}/${TOOLCHAIN_LONGVER}-${TOOLCHAIN_FLAVOR}.tar.bz2
|
2019-12-01 18:07:23 +00:00
|
|
|
ENV TOOLCHAIN_HASH_linux=bcd840f839d5bf49279638e9f67890b2ef3a7c9c7a9b25271e83ec4ff41d177a
|
|
|
|
ENV TOOLCHAIN_HASH_src=f162a655f222319f75862d7aba9ff8a4a86f752392e4f3c5d9ef2ee8bc13be58
|
2018-01-09 20:44:42 +00:00
|
|
|
|
|
|
|
# extract toolchain
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN cd /opt && wget --no-verbose ${TOOLCHAIN_URL}
|
2019-12-01 18:07:23 +00:00
|
|
|
RUN cd /opt && echo "${TOOLCHAIN_HASH_linux} ${TOOLCHAIN_LONGVER}-x86_64-linux.tar.bz2\n${TOOLCHAIN_HASH_src} ${TOOLCHAIN_LONGVER}-src.tar.bz2" | sha256sum -c --ignore-missing
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN cd /opt && tar xfj ${TOOLCHAIN_LONGVER}-${TOOLCHAIN_FLAVOR}.tar.bz2
|
2018-01-09 20:44:42 +00:00
|
|
|
|
2018-10-12 12:13:39 +00:00
|
|
|
# build toolchain (if required)
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN if [ "${TOOLCHAIN_FLAVOR}" = "src" ]; then \
|
|
|
|
pushd /opt/${TOOLCHAIN_LONGVER} ; \
|
2018-10-23 10:00:42 +00:00
|
|
|
./install-sources.sh --skip_steps=mingw32 ; \
|
|
|
|
./build-prerequisites.sh --skip_steps=mingw32 ; \
|
|
|
|
./build-toolchain.sh --skip_steps=mingw32,manual ; \
|
|
|
|
popd ; \
|
|
|
|
fi
|
2018-10-12 12:13:39 +00:00
|
|
|
|
2019-01-11 11:11:04 +00:00
|
|
|
# download protobuf
|
2018-08-14 15:32:02 +00:00
|
|
|
|
2019-10-02 13:07:48 +00:00
|
|
|
ENV PROTOBUF_VERSION=3.6.1
|
|
|
|
ENV PROTOBUF_HASH=6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807
|
2019-08-20 09:52:57 +00:00
|
|
|
RUN wget --no-verbose "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"
|
2019-01-11 11:11:04 +00:00
|
|
|
RUN echo "${PROTOBUF_HASH} protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" | sha256sum -c
|
2018-08-14 15:32:02 +00:00
|
|
|
|
2018-10-12 11:57:27 +00:00
|
|
|
# setup toolchain
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
ENV PATH=/opt/${TOOLCHAIN_LONGVER}/bin:${PATH}
|
2018-10-12 11:57:27 +00:00
|
|
|
|
2019-01-11 11:11:04 +00:00
|
|
|
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
|
2017-11-04 14:01:44 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
ENV PYTHON=python3
|
2019-04-25 13:21:42 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
# use zipfile module to extract files world-readable
|
|
|
|
RUN ${PYTHON} -m zipfile -e "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" /usr/local && chmod 755 /usr/local/bin/protoc
|
2019-04-23 13:56:07 +00:00
|
|
|
|
2019-04-25 11:08:33 +00:00
|
|
|
ENV WORKON_HOME=/tmp/.venvs
|
2017-11-04 00:56:05 +00:00
|
|
|
|
2019-06-03 09:47:28 +00:00
|
|
|
# download monero tests binary
|
|
|
|
|
2019-11-13 15:29:06 +00:00
|
|
|
ENV TREZOR_MONERO_TESTS_SHA256SUM=36852ff2add3f865dbf4e23f4e32e1022a8f4b14cd4fb4eb97491d99ba93b9bc
|
|
|
|
ENV TREZOR_MONERO_TESTS_URL="https://github.com/ph4r05/monero/releases/download/v0.15.0.0-tests-u18.04-02/trezor_tests"
|
2019-06-03 09:47:28 +00:00
|
|
|
ENV TREZOR_MONERO_TESTS_PATH="/opt/trezor_monero_tests"
|
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \
|
|
|
|
wget --no-verbose "${TREZOR_MONERO_TESTS_URL}" -O "${TREZOR_MONERO_TESTS_PATH}" ; \
|
|
|
|
chmod +x "${TREZOR_MONERO_TESTS_PATH}" ; \
|
|
|
|
echo "${TREZOR_MONERO_TESTS_SHA256SUM} ${TREZOR_MONERO_TESTS_PATH}" | sha256sum -c ; \
|
|
|
|
fi
|
2019-06-03 09:47:28 +00:00
|
|
|
|
2019-01-11 11:11:04 +00:00
|
|
|
# install python dependencies
|
2017-11-04 00:56:05 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN ${PYTHON} -m pip install pipenv
|
2019-04-23 13:56:07 +00:00
|
|
|
|
2019-08-27 14:05:22 +00:00
|
|
|
RUN ${PYTHON} --version
|
|
|
|
RUN ${PYTHON} -m pip --version
|
2019-04-23 13:56:07 +00:00
|
|
|
RUN pipenv --version
|