Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
837afaf8
Commit
837afaf8
authored
Sep 08, 2021
by
Daniel Scheffler
Browse files
Fixed slow conda environment creation.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
4d3ed54a
Pipeline
#27341
failed with stages
in 16 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/CI_docker/context/py_tools_ds_ci.docker
View file @
837afaf8
...
...
@@ -7,9 +7,11 @@ COPY *.yml /root/
# update the ci_env environment (that already contains all packages installed via 'docker_pyenvs' repo)
# -> also include packages for conda deployment and upload
# NOTE: The pkgs directory (cache) is deleted because otherwise conda env create takes hours within a docker container.
RUN
/bin/bash
-i
-c
"
\
source /root/mambaforge/bin/activate ;
\
mamba update -n base -c conda-forge --all;
\
conda activate ci_env;
\
mamba env update -n ci_env -f /root/environment_py_tools_ds.yml ;
\
mamba install -c conda-forge conda-build conda-build-all anaconda-client"
mamba install -c conda-forge conda-build conda-build-all anaconda-client;
\
rm -rf /root/mambaforge/pkgs"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment