1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
9 ## dont use debian:11 here since the word 'bullseye' is used for rvm precompiled binaries
10 FROM debian:bullseye as build_x86_64
13 ONBUILD ADD generated/go${GOVERSION}.linux-amd64.tar.gz /usr/local/
14 ONBUILD RUN ln -s /usr/local/go/bin/go /usr/local/bin/
15 # Install nodejs and npm
16 ONBUILD ADD generated/node-v12.22.12-linux-x64.tar.xz /usr/local/
17 ONBUILD RUN ln -s /usr/local/node-v12.22.12-linux-x64/bin/* /usr/local/bin/
18 ONBUILD RUN npm install -g yarn
19 ONBUILD RUN ln -sf /usr/local/node-v12.22.12-linux-x64/bin/* /usr/local/bin/
20 # On x86, we want some cross-compilation support for arm64
21 # Add gcc-aarch64-linux-gnu to compile go binaries for arm64
22 ONBUILD RUN /usr/bin/apt-get update && /usr/bin/apt-get install -q -y gcc-aarch64-linux-gnu
23 # We also need libpam compiled for arm64
24 ONBUILD RUN /usr/bin/dpkg --add-architecture arm64
25 ONBUILD RUN /usr/bin/apt-get update && /usr/bin/apt-get install -o APT::Immediate-Configure=0 -q -y libpam0g-dev:arm64 libfuse-dev:arm64
27 FROM debian:bullseye as build_aarch64
30 ONBUILD ADD generated/go${GOVERSION}.linux-arm64.tar.gz /usr/local/
31 ONBUILD RUN ln -s /usr/local/go/bin/go /usr/local/bin/
32 # Install nodejs and npm
33 ONBUILD ADD generated/node-v12.22.12-linux-arm64.tar.xz /usr/local/
34 ONBUILD RUN ln -s /usr/local/node-v12.22.12-linux-arm64/bin/* /usr/local/bin/
35 ONBUILD RUN npm install -g yarn
36 ONBUILD RUN ln -sf /usr/local/node-v12.22.12-linux-arm64/bin/* /usr/local/bin/
38 FROM build_${HOSTTYPE}
39 RUN echo HOSTTYPE ${HOSTTYPE}
41 MAINTAINER Arvados Package Maintainers <packaging@arvados.org>
43 ENV DEBIAN_FRONTEND noninteractive
45 SHELL ["/bin/bash", "-c"]
46 # Install dependencies.
47 RUN /usr/bin/apt-get update && /usr/bin/apt-get install -q -y python3 python3-setuptools python3-pip libcurl4-gnutls-dev curl git procps libattr1-dev libfuse-dev libgnutls28-dev libpq-dev unzip python3-venv python3-dev libpam-dev equivs
50 RUN /usr/bin/pip3 install 'virtualenv<20'
53 ADD generated/mpapis.asc /tmp/
54 ADD generated/pkuczynski.asc /tmp/
55 RUN gpg --import --no-tty /tmp/mpapis.asc && \
56 gpg --import --no-tty /tmp/pkuczynski.asc && \
57 curl -L https://get.rvm.io | bash -s stable && \
58 /usr/local/rvm/bin/rvm install 2.7 -j $(grep -c processor /proc/cpuinfo) --disable-binary && \
59 /usr/local/rvm/bin/rvm alias create default ruby-2.7 && \
60 echo "gem: --no-document" >> ~/.gemrc && \
61 /usr/local/rvm/bin/rvm-exec default gem install bundler --version 2.2.19 && \
62 /usr/local/rvm/bin/rvm-exec default gem install fpm --version 1.15.1
64 RUN /usr/local/rvm/bin/rvm-exec default bundle config --global jobs $(let a=$(grep -c processor /proc/cpuinfo )-1; echo $a)
65 # Cf. https://build.betterup.com/one-weird-trick-that-will-speed-up-your-bundle-install/
66 ENV MAKE "make --jobs $(grep -c processor /proc/cpuinfo)"
68 # Preseed the go module cache and the ruby gems, using the currently checked
69 # out branch of the source tree. This avoids potential compatibility issues
70 # between the version of Ruby and certain gems.
71 RUN git clone --depth 1 git://git.arvados.org/arvados.git /tmp/arvados && \
73 if [[ -n "${BRANCH}" ]]; then git checkout ${BRANCH}; fi && \
74 cd /tmp/arvados/services/api && \
75 /usr/local/rvm/bin/rvm-exec default bundle install && \
79 ENV WORKSPACE /arvados
80 CMD ["/usr/local/rvm/bin/rvm-exec", "default", "bash", "/jenkins/run-build-packages.sh", "--target", "debian11"]