From dd1f7868ca382c1da947f5c46505f4ad2cf8e7b4 Mon Sep 17 00:00:00 2001 From: Chris Burr Date: Tue, 28 Nov 2023 02:18:38 +0100 Subject: [PATCH] Depend on diracx-client for diracx-services --- services-base/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services-base/Dockerfile b/services-base/Dockerfile index 5307c33..e11a520 100644 --- a/services-base/Dockerfile +++ b/services-base/Dockerfile @@ -4,7 +4,8 @@ EXPOSE 8000 # Copying in ENTRYPOINT script and environment specification COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/ -ENV DIRACX_IMAGE_PACKAGES=core,db,routers +# diracx-client is included here as it's needed by vanilla DIRAC +ENV DIRACX_IMAGE_PACKAGES=core,db,router,clients RUN micromamba install --freeze-installed --yes --file /tmp/environment.yml --name=base && \ micromamba clean --all --yes --force-pkgs-dirs && \