Files
devcontainer/containers/go/Containerfile
Job79 9c74bad0a3
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 58s
Build containers / dependent-images (go) (push) Successful in 33s
Build containers / dependent-images (infra) (push) Successful in 57s
ci: add dnf cache
2025-12-29 16:38:10 +01:00

9 lines
160 B
Docker

ARG TAG
FROM job79/fedora:${TAG}
USER root
RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
dnf -y --setopt=keepcache=1 install go
USER user