-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to Fedora 41 and added python3-dnf, as dnf is now provided by…
… dnf5 and no longer present by default
- Loading branch information
1 parent
b1f98e9
commit 83b8f50
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from registry.fedoraproject.org/fedora:40 | ||
FROM registry.fedoraproject.org/fedora:41 | ||
|
||
run dnf -y update fedora-gpg-keys && \ | ||
dnf -y install git python3-jinja2 python3-koji python3-yaml && \ | ||
dnf clean all | ||
workdir /workspace | ||
RUN dnf -y update fedora-gpg-keys && \ | ||
dnf -y install git python3-jinja2 python3-koji python3-yaml python3-dnf && \ | ||
dnf clean all | ||
|
||
WORKDIR /workspace | ||
|