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
2
2
3
3
# Update system and install basic tools
4
4
RUN 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; \
6
6
dnf update -y && \
7
7
dnf groupinstall "Development Tools" -yqq && \
8
8
dnf config-manager --set-enabled powertools && \
Original file line number Diff line number Diff line change 1
1
FROM rockylinux:9
2
2
3
3
# 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; \
5
5
dnf clean all && \
6
6
dnf makecache && \
7
7
dnf update -y && \
You can’t perform that action at this time.
0 commit comments