Compare commits

2 Commits

Author SHA1 Message Date
kevinnlsamuel 9c787b0e72 scaffolding pt.2 2026-06-14 21:51:33 +05:30
kevinnlsamuel b8a1412738 🤷 2026-06-11 23:11:50 +05:30
2 changed files with 14 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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 \
--setopt install_weak_deps=False \
rpmdevtools
+2
View File
@@ -0,0 +1,2 @@
image TARGET='PACKER':
podman build --target {{ TARGET }} -t {{ lowercase(TARGET) }} .