Skip to content
Snippets Groups Projects
Commit 24a1407a authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[gitlab] Remove .conda and .condarc from docker image

The current conda-concourse-ci includes wrong configuration
parent 1b836408
No related branches found
No related tags found
1 merge request!318Remove .conda and .condarc from docker image when doing deployment
Pipeline #36897 passed
...@@ -61,6 +61,9 @@ build_linux_36: ...@@ -61,6 +61,9 @@ build_linux_36:
# Deploy targets # Deploy targets
.deploy_template: &deploy_job .deploy_template: &deploy_job
stage: deploy stage: deploy
before_script:
- "[ -r /root/.condarc ] && rm -f /root/.condarc"
- "[ -d /root/.conda ] && rm -rf /root/.conda"
script: script:
- curl --silent "${BOOTSTRAP}" --output "bootstrap.py" - curl --silent "${BOOTSTRAP}" --output "bootstrap.py"
- python3 bootstrap.py channel base - python3 bootstrap.py channel base
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment