scaffolding pt.2

This commit is contained in:
2026-06-14 21:51:33 +05:30
parent b8a1412738
commit 9c787b0e72
2 changed files with 8 additions and 3 deletions
+6 -1
View File
@@ -1,4 +1,9 @@
FROM docker.io/fedora:44
FROM docker.io/fedora:44 as BUILDER
RUN dnf install --assumeyes --setopt install_weak_deps=False \
gcc make just
FROM BUILDER as PACKER
RUN dnf install \
--assumeyes \
+2 -2
View File
@@ -1,2 +1,2 @@
image:
podman build -t rpmpacker .
image TARGET='PACKER':
podman build --target {{ TARGET }} -t {{ lowercase(TARGET) }} .