diff --git a/docker/Dockerfile b/docker/Dockerfile index 3e74753..3915dff 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM rockylinux:latest +FROM almalinux:latest RUN dnf install -y \ dnf-plugins-core \ @@ -7,10 +7,13 @@ RUN dnf install -y \ cronie \ git \ jq \ - yq \ openssh-clients \ + wget \ && dnf clean all +RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq &&\ + chmod +x /usr/local/bin/yq + COPY sync.sh /usr/local/bin/sync.sh COPY entrypoint.sh /entrypoint.sh COPY nginx.conf /etc/nginx/conf.d/repo.conf