Skip to content

Commit

Permalink
feat: use new container version by default (3.0) (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening authored Nov 5, 2023
1 parent ac33202 commit 11d53db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bioconda_utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ def build(recipe: str, pkg_paths: List[str] = None,
is_noarch = bool(meta.get_value('build/noarch', default=False))
use_base_image = meta.get_value('extra/container', {}).get('extended-base', False)
if use_base_image:
base_image = 'quay.io/bioconda/base-glibc-debian-bash:2.1.0'
base_image = 'quay.io/bioconda/base-glibc-debian-bash:3.0'
else:
base_image = 'quay.io/bioconda/base-glibc-busybox-bash:2.1.0'
base_image = 'quay.io/bioconda/base-glibc-busybox-bash:3.0'

build_failure_record = BuildFailureRecord(recipe)
build_failure_record_existed_before_build = build_failure_record.exists()
Expand Down

0 comments on commit 11d53db

Please sign in to comment.