From 1d3d6fa85fd7a6308dccc4c240b355563da3bc0e Mon Sep 17 00:00:00 2001 From: "David M. Klein" <4+leander19961@noreply.localhost> Date: Mon, 24 Aug 2026 16:35:43 +0200 Subject: [PATCH] docker/Dockerfile aktualisiert --- docker/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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