File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM rockylinux:8
22
33# Update system and install basic tools
44RUN dnf clean all && \
5- echo '[goreleaser]\nname=GoReleaser\nbaseurl=https://repo.goreleaser.com/yum/\nenabled=1\ngpgcheck=0' > /etc/yum.repos.d/goreleaser.repo; \
5+ echo -e '[goreleaser]\nname=GoReleaser\nbaseurl=https://repo.goreleaser.com/yum/\nenabled=1\ngpgcheck=0' > /etc/yum.repos.d/goreleaser.repo; \
66 dnf update -y && \
77 dnf groupinstall "Development Tools" -yqq && \
88 dnf config-manager --set-enabled powertools && \
Original file line number Diff line number Diff line change 11FROM rockylinux:9
22
33# Install basic packages and development tools
4- RUN echo '[goreleaser]\nname=GoReleaser\nbaseurl=https://repo.goreleaser.com/yum/\nenabled=1\ngpgcheck=0' > /etc/yum.repos.d/goreleaser.repo; \
4+ RUN echo -e '[goreleaser]\nname=GoReleaser\nbaseurl=https://repo.goreleaser.com/yum/\nenabled=1\ngpgcheck=0' > /etc/yum.repos.d/goreleaser.repo; \
55 dnf clean all && \
66 dnf makecache && \
77 dnf update -y && \
You can’t perform that action at this time.
0 commit comments