9 lines
98 B
Docker
9 lines
98 B
Docker
ARG TAG
|
|
FROM job79/fedora:${TAG}
|
|
USER root
|
|
|
|
RUN dnf -y install go && \
|
|
dnf clean all
|
|
|
|
USER user
|