From 11580dd77f802e65e5d151ceb5eb9957747eae39 Mon Sep 17 00:00:00 2001 From: "David M. Klein" <4+leander19961@noreply.localhost> Date: Tue, 18 Aug 2026 14:09:22 +0200 Subject: [PATCH] =?UTF-8?q?docker/sync/Dockerfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/sync/Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker/sync/Dockerfile diff --git a/docker/sync/Dockerfile b/docker/sync/Dockerfile new file mode 100644 index 0000000..106c319 --- /dev/null +++ b/docker/sync/Dockerfile @@ -0,0 +1,21 @@ +FROM debian:trixie-slim + +RUN apt-get update && apt-get install -y --no-install-recommends \ + ostree \ + flatpak \ + git \ + curl \ + ca-certificates \ + gnupg \ + && rm -rf /var/lib/apt/lists/* + +# yq (mikefarah, Go-Binary) zum Parsen von apps.yaml +RUN curl -sSL -o /usr/local/bin/yq \ + https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \ + && chmod +x /usr/local/bin/yq + +WORKDIR /app +COPY sync.sh /app/sync.sh +RUN chmod +x /app/sync.sh + +ENTRYPOINT ["/app/sync.sh"] \ No newline at end of file