docker/sync/Dockerfile hinzugefügt

This commit is contained in:
2026-08-18 14:09:22 +02:00
parent ea76e5288c
commit 11580dd77f
+21
View File
@@ -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"]