ARG QT_VERSION=5.15.2 # QT Installation Image -------------------------------------------------------- FROM ubuntu:20.04 AS qt-install ARG QT_VERSION RUN apt update && apt full-upgrade -y && apt install -y --no-install-recommends \ sudo python3 python3-pip python3-dev \ build-essential gcc g++ \ && apt-get -qq clean RUN chmod -R 777 /opt # Install QT RUN python3 -m pip install setuptools \ && python3 -m pip install -U pip \ && python3 -m pip install aqtinstall \ && python3 -m aqt install --output /opt/qt ${QT_VERSION} linux desktop -m qtwebengine # Build Image ------------------------------------------------------------------ FROM ubuntu:20.04 ARG LINUXDEPLOYQT_VERSION=20230423-8428c59 ARG QT_VERSION # Adapted from a12e/docker-qt by Aurélien Brooke ENV DEBIAN_FRONTEND=noninteractive \ QMAKESPEC=linux-g++ \ QT_PATH=/opt/qt \ QT_PLATFORM=gcc_64 \ QT_VERSION=$QT_VERSION ENV PATH=${QT_PATH}/${QT_VERSION}/${QT_PLATFORM}/bin:$PATH \ QTDIR=${QT_PATH}/${QT_VERSION}/${QT_PLATFORM} ENV LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH} # Install dependencies RUN apt update -yq && apt install -yq software-properties-common \ && add-apt-repository -y ppa:git-core/ppa \ && add-apt-repository -y ppa:ubuntu-toolchain-r/test \ && apt update -yq && apt full-upgrade -yq && apt install -yq --no-install-recommends --fix-missing \ gnupg2 openssh-client ca-certificates locales sudo jq curl wget fuse s3cmd file unzip llvm tk-dev xz-utils \ git make build-essential pkg-config extra-cmake-modules gcc-9 g++-9 \ libgl1-mesa-dev libsm6 libice6 libfontconfig1 libdbus-1-3 libssl-dev libz-dev \ zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev unixodbc-dev libpq-dev \ libncurses5-dev libncursesw5-dev libpcsclite-dev libpcre3-dev libnss3 \ gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ gstreamer1.0-libav gstreamer1.0-tools gstreamer1.0-alsa libpulse-mainloop-glib0 \ gstreamer1.0-pulseaudio libgstreamer-plugins-base1.0-0 \ libxext6 libxrender1 libxkbcommon-dev libxkbcommon-x11-dev libxcomposite1 libxtst6 \ libxrandr2 libxcursor1 libxi6 libxcb-randr0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \ libxcb-render-util0 libxcb-shape0 libxcb-render0 libxcb-xinerama0 \ && update-alternatives \ --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 \ --slave /usr/bin/g++ g++ /usr/bin/g++-9 \ && apt-get -qq clean # Install linuxdeployqt RUN mkdir -p /usr/local/bin \ && curl -Lo/usr/local/bin/linuxdeployqt "https://status-misc.ams3.digitaloceanspaces.com/desktop/linuxdeployqt-${LINUXDEPLOYQT_VERSION}-x86_64.AppImage" \ && chmod a+x /usr/local/bin/linuxdeployqt # Reconfigure locale RUN locale-gen en_US.UTF-8 && dpkg-reconfigure locales # Copy QT toolchain RUN chmod -R 777 /opt && mkdir -p /opt/qt/$QT_VERSION COPY --from=qt-install /opt/qt/$QT_VERSION /opt/qt/$QT_VERSION/. # Fix LetsEncrypt X3 root certificate expliration RUN sudo sed -i 's#\(mozilla/DST_Root_CA_X3.crt\)#!\1#' /etc/ca-certificates.conf \ && sudo dpkg-reconfigure -fnoninteractive ca-certificates # CMake 3.16 or higher is required RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1-linux-x86_64.sh \ && chmod +x cmake-3.22.1-linux-x86_64.sh \ && sudo mkdir /opt/cmake \ && sudo sh cmake-3.22.1-linux-x86_64.sh --prefix=/opt/cmake --exclude-subdir --skip-license \ && rm -f cmake-3.22.1-linux-x86_64.sh ENV PATH="/opt/cmake/bin:${PATH}" # Installing Golang RUN GOLANG_SHA256="e330e5d977bf4f3bdc157bc46cf41afa5b13d66c914e12fd6b694ccda65fcf92" \ && GOLANG_TARBALL="go1.21.10.linux-amd64.tar.gz" \ && wget -q "https://dl.google.com/go/${GOLANG_TARBALL}" \ && echo "${GOLANG_SHA256} ${GOLANG_TARBALL}" | sha256sum -c \ && sudo tar -C /usr/local -xzf "${GOLANG_TARBALL}" \ && rm "${GOLANG_TARBALL}" \ && sudo ln -s /usr/local/go/bin/go /usr/local/bin # Install Protoc RUN PROTOC_SHA256="75d8a9d7a2c42566e46411750d589c51276242d8b6247a5724bac0f9283e05a8" \ && PROTOC_TARBALL="protoc-3.20.0-linux-x86_64.zip" \ && wget -q "https://github.com/protocolbuffers/protobuf/releases/download/v3.20.0/${PROTOC_TARBALL}" \ && echo "${PROTOC_SHA256} ${PROTOC_TARBALL}" | sha256sum -c \ && sudo unzip -d /usr/local "${PROTOC_TARBALL}" \ && rm "${PROTOC_TARBALL}" # Install Protoc-deg-go RUN PROTOC_GEN_SHA256="0b2c257938a8cd9ba3506bbdbbaad45e51245b6f9e0743035ade7acf746c6be7" \ && PROTOC_GEN_TARBALL="protoc-gen-go.v1.34.1.linux.amd64.tar.gz" \ && wget -q "https://github.com/protocolbuffers/protobuf-go/releases/download/v1.34.1/${PROTOC_GEN_TARBALL}" \ && echo "${PROTOC_GEN_SHA256} ${PROTOC_GEN_TARBALL}" | sha256sum -c \ && sudo tar -C /usr/local/bin -xzf "${PROTOC_GEN_TARBALL}" \ && rm "${PROTOC_GEN_TARBALL}" # Create Nix directory as root. RUN mkdir /nix && chown 1001:1001 /nix # Jenkins user needs a specific UID/GID to work RUN sudo groupadd -g 1001 jenkins \ && sudo useradd --create-home -u 1001 -g 1001 jenkins USER jenkins ENV HOME="/home/jenkins" # Access to tools installed by Go. ENV PATH="${HOME}/go/bin:${PATH}" # Nix for jenkins user to build status-go. RUN curl -s https://nixos.org/releases/nix/nix-2.19.3/install | sh -s -- --no-daemon# Nix for jenkins user to build status-go. RUN curl -s https://nixos.org/releases/nix/nix-2.19.3/install | sh -s -- --no-daemon # Installing rust RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.78 -y ENV PATH="~/.cargo/bin:${PATH}" LABEL maintainer="jakub@status.im" LABEL source="https://github.com/status-im/status-desktop" LABEL description="Build image for the Status Desktop client written in Nim."