Update
Some checks failed
Build and publish Docker image / build-and-push (push) Failing after 5m7s

This commit is contained in:
2025-09-21 11:27:34 -05:00
parent da754ca754
commit 40cb279e2e

View File

@@ -1,7 +1,7 @@
FROM rockylinux:9 FROM rockylinux/rockylinux:9
RUN dnf update -y && \ RUN dnf update -y
dnf install -y \ RUN dnf install -y \
iputils \ iputils \
iproute \ iproute \
iperf3 \ iperf3 \
@@ -33,8 +33,9 @@ RUN dnf update -y && \
lsof \ lsof \
openssh-clients \ openssh-clients \
nodejs \ nodejs \
npm && \ rsync \
dnf group install -y "Development Tools" && \ npm
RUN dnf group install -y "Development Tools" && \
dnf clean all && \ dnf clean all && \
case "$(uname -m)" in \ case "$(uname -m)" in \
x86_64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" -O /usr/local/bin/yq ;; \ x86_64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" -O /usr/local/bin/yq ;; \