Files
devcontainer/containers/go/Containerfile
2025-12-29 17:00:17 +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