diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..b45dc4c --- /dev/null +++ b/Containerfile @@ -0,0 +1,7 @@ +FROM docker.io/fedora:44 + +RUN dnf install \ + --assumeyes \ + --setopt install_weak_deps=False \ + rpmdevtools + diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..09bc39f --- /dev/null +++ b/Justfile @@ -0,0 +1,2 @@ +image: + podman build -t rpmpacker .