feat(ci): build using podman for zstd:chunked and only build changed containers
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 1m6s
Build containers / dependent-images (go) (push) Successful in 52s
Build containers / dependent-images (infra) (push) Successful in 1m18s

This commit is contained in:
Job
2025-12-27 14:52:11 +01:00
parent 40bb6328c4
commit 9aeda3e7f4
4 changed files with 113 additions and 62 deletions

View File

@@ -11,7 +11,7 @@ RUN dnf update -y && \
# === setup user ===
RUN useradd -ms /bin/bash user && \
echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers && \
install -d -o user -g user /run/user/1000 /home/user/.config /home/user/.local /home/user/.cache
install -m 0700 -d -o user -g user /run/user/1000 /home/user/.config /home/user/.local /home/user/.cache
USER user
WORKDIR /home/user

View File

@@ -2,6 +2,6 @@ ARG TAG
FROM git.plabble.org/job79/fedora:${TAG}
USER root
RUN dnf -y install go && dnf clean all
RUN dnf -y install go
USER user