Skip to content

Commit

Permalink
fix: add local channel for docker builds (#945)
Browse files Browse the repository at this point in the history
The local folder channel was not included in the command, causing newly
built packages on the `bulk` branch to not be usable to their
descendants on the same worker because of strict channel priority.
  • Loading branch information
aliciaaevans authored Dec 13, 2023
1 parent 73e69b2 commit de8ce00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/docker_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
# The actual building...
# we explicitly point to the meta.yaml, in order to keep
# conda-build from building all subdirectories
conda mambabuild {self.conda_build_args} {self.container_recipe}/meta.yaml 2>&1
conda mambabuild -c file://{self.container_staging} {self.conda_build_args} {self.container_recipe}/meta.yaml 2>&1
# copy all built packages to the staging area
cp /opt/conda/conda-bld/*/*.tar.bz2 {self.container_staging}/{arch}
Expand Down

0 comments on commit de8ce00

Please sign in to comment.