1FROM ubuntu:16.04
2
3RUN apt-get update -y && apt-get install -y gcc gcc-s390x-linux-gnu ca-certificates curl make git ninja-build
4RUN git config --global --add safe.directory '*'
5
6# The CMake in Ubuntu 16.04 was a bit too old for us to use so download one from
7# CMake's own releases and use that instead.
8RUN curl --retry 5 -L -o cmake.tar.gz \
9    https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3-linux-x86_64.tar.gz && \
10  tar xf cmake.tar.gz && \
11  rm cmake.tar.gz
12ENV PATH=$PATH:/cmake-3.29.3-linux-x86_64/bin
13
14ENV CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_LINKER=s390x-linux-gnu-gcc
15