add supervisord image build
ci/woodpecker/push/flux-reconcile-source Pipeline was canceled
ci/woodpecker/push/build-images Pipeline was canceled

This commit is contained in:
2026-07-12 23:03:27 +02:00
parent 0cb5e02099
commit 23c5b8e51a
3 changed files with 39 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM debian:13.5
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y --no-install-recommends\
supervisor \
&& rm -rf /var/lib/apt/lists/*
ADD --chmod=755 entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
WORKSPACE=/workspace
CONF=$WORKSPACE/supervisord.conf
[[ -f "$CONF" ]] || (echo_supervisord_conf > $CONF )
exec supervisord -n -c $CONF "$@"