diff --git a/Dockerfile b/Dockerfile index 029f96a..7658a3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM mambaorg/micromamba:1.5.8 AS micromamba +USER root +RUN apt update && apt install -y git +USER $MAMBA_USER + COPY --chown=$MAMBA_USER:$MAMBA_USER . . RUN micromamba install --yes --name "base" --file "environment.yml" diff --git a/environment.yml b/environment.yml index 7c0d5d6..21588ee 100644 --- a/environment.yml +++ b/environment.yml @@ -7,3 +7,6 @@ dependencies: - parsl-with-kubernetes ~=2024.4 # TODO: Remove once this build is completed: https://github.com/conda-forge/parsl-feedstock/pull/72 - python-kubernetes + + - pip: + - "--editable=git+https://github.com/QGreenland-Net/parsl.git@k8s-use-incluser-config-fallback#egg=parsl"