X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/936ed3a6a7484917fc10636b3dc2c5fdd9578643..1facbe1b9a0f41f7a86e9cae8a78926364ed69f6:/build/package-build-dockerfiles/debian12/Dockerfile diff --git a/build/package-build-dockerfiles/debian12/Dockerfile b/build/package-build-dockerfiles/debian12/Dockerfile index 86d038b80b..859c1a8597 100644 --- a/build/package-build-dockerfiles/debian12/Dockerfile +++ b/build/package-build-dockerfiles/debian12/Dockerfile @@ -8,13 +8,15 @@ ARG GOVERSION ## dont use debian:12 here since the word 'bookworm' is used for rvm precompiled binaries FROM debian:bookworm as build_x86_64 +ONBUILD ARG BRANCH # Install go ONBUILD ARG GOVERSION ONBUILD ADD generated/go${GOVERSION}.linux-amd64.tar.gz /usr/local/ ONBUILD RUN ln -s /usr/local/go/bin/go /usr/local/bin/ # Install nodejs and npm -ONBUILD ADD generated/node-v10.23.1-linux-x64.tar.xz /usr/local/ -ONBUILD RUN ln -s /usr/local/node-v10.23.1-linux-x64/bin/* /usr/local/bin/ +ONBUILD ADD generated/node-v12.22.12-linux-x64.tar.xz /usr/local/ +ONBUILD RUN env -C /usr/local/node-v12.22.12-linux-x64/bin PATH="$PATH:." ./npm install -g yarn +ONBUILD RUN ln -sf /usr/local/node-v12.22.12-linux-x64/bin/* /usr/local/bin/ # On x86, we want some cross-compilation support for arm64 # Add gcc-aarch64-linux-gnu to compile go binaries for arm64 ONBUILD RUN /usr/bin/apt-get update && /usr/bin/apt-get install -q -y gcc-aarch64-linux-gnu @@ -23,13 +25,15 @@ ONBUILD RUN /usr/bin/dpkg --add-architecture arm64 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 FROM debian:bookworm as build_aarch64 +ONBUILD ARG BRANCH # Install go ONBUILD ARG GOVERSION ONBUILD ADD generated/go${GOVERSION}.linux-arm64.tar.gz /usr/local/ ONBUILD RUN ln -s /usr/local/go/bin/go /usr/local/bin/ # Install nodejs and npm -ONBUILD ADD generated/node-v10.23.1-linux-arm64.tar.xz /usr/local/ -ONBUILD RUN ln -s /usr/local/node-v10.23.1-linux-arm64/bin/* /usr/local/bin/ +ONBUILD ADD generated/node-v12.22.12-linux-arm64.tar.xz /usr/local/ +ONBUILD RUN env -C /usr/local/node-v12.22.12-linux-arm64/bin PATH="$PATH:." ./npm install -g yarn +ONBUILD RUN ln -sf /usr/local/node-v12.22.12-linux-arm64/bin/* /usr/local/bin/ FROM build_${HOSTTYPE} RUN echo HOSTTYPE ${HOSTTYPE} @@ -61,13 +65,11 @@ ENV MAKE "make --jobs 8" # Preseed the go module cache and the ruby gems, using the currently checked # out branch of the source tree. This avoids potential compatibility issues # between the version of Ruby and certain gems. -RUN git clone --depth 1 git://git.arvados.org/arvados.git /tmp/arvados && \ +RUN git clone git://git.arvados.org/arvados.git /tmp/arvados && \ cd /tmp/arvados && \ if [[ -n "${BRANCH}" ]]; then git checkout ${BRANCH}; fi && \ cd /tmp/arvados/services/api && \ /usr/local/rvm/bin/rvm-exec default bundle install && \ - cd /tmp/arvados/apps/workbench && \ - /usr/local/rvm/bin/rvm-exec default bundle install && \ cd /tmp/arvados && \ go mod download