From 6b781327f947a3d808fd3bc0d9644559bbc5c354 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sat, 12 Aug 2023 23:04:02 +0000 Subject: [PATCH] fix: don't install juggler and EICrecon in jug_xl --- containers/jug/xl.Dockerfile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/containers/jug/xl.Dockerfile b/containers/jug/xl.Dockerfile index 593631f31..4aed58191 100644 --- a/containers/jug/xl.Dockerfile +++ b/containers/jug/xl.Dockerfile @@ -11,8 +11,6 @@ FROM ${DOCKER_REGISTRY}${BASE_IMAGE}:${INTERNAL_TAG} ARG TARGETPLATFORM ARG EICWEB="https://eicweb.phy.anl.gov/api/v4/projects" -ARG JUGGLER_VERSION="main" -ARG EICRECON_VERSION="main" ARG jobs=8 ## version will automatically bust cache for nightly, as it includes @@ -22,18 +20,6 @@ ARG JUG_VERSION=1 RUN cd /tmp \ && echo " - jug_xl: ${JUG_VERSION}" >> /etc/jug_info -## Install juggler to the environment -RUN spack add juggler@${JUGGLER_VERSION} \ - && spack concretize \ - && spack install - -## Install eicrecon to the environment -RUN spack add eicrecon@${EICRECON_VERSION} \ - && spack concretize \ - && spack install \ - && echo "export JANA_PLUGIN_PATH=/usr/local/lib/EICrecon/plugins" \ - > /etc/profile.d/z12_eicrecon.sh - ## Install benchmarks into the container ARG BENCHMARK_COM_VERSION="master" ARG BENCHMARK_DET_VERSION="master" -- GitLab