Skip to content

Commit

Permalink
Use fedora:41 as base image for the execution environment
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Dec 16, 2024
1 parent 595c82f commit f6cd112
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:40
name: quay.io/fedora/fedora-minimal:41

dependencies:
ansible_runner:
Expand Down
3 changes: 3 additions & 0 deletions final/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,6 @@ uname -a

# Make a workdir usable by the root user
mkdir -p /workdir

# compatibility with recent docker versions:
chmod go+rwx /etc/passwd
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def _start_container() -> None:
engine = INFRASTRUCTURE.container_engine
cmd = (
f'{engine} ps -q --filter "name={INFRASTRUCTURE.container_name}" | xargs -r {engine} stop;'
f'{engine} ps -aq --filter "name=$name" | xargs -r {engine} rm'
f'{engine} ps -aq --filter "name=$name" | xargs -r {engine} rm --force --volumes'
)
subprocess.run(cmd, check=True, capture_output=False, shell=True, text=True)

Expand Down

0 comments on commit f6cd112

Please sign in to comment.