Files
devcontainer/containers/go/Containerfile
Job79 7bcccf5fb3
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 1m0s
Build containers / dependent-images (go) (push) Successful in 40s
Build containers / dependent-images (infra) (push) Successful in 57s
ci: add dnf cache
2025-12-29 15:33:46 +01:00

9 lines
139 B
Docker

ARG TAG
FROM job79/fedora:${TAG}
USER root
RUN --mount=type=cache,target=/var/cache/dnf \
dnf -y install go && dnf clean all
USER user