aurral: override upstream ENTRYPOINT with /init so s6 owns startup

This commit is contained in:
petruknw
2026-05-21 15:54:10 +10:00
parent 2903a010ee
commit cf02b5bfc8

View File

@@ -24,3 +24,8 @@ COPY rootfs /
RUN chmod a+x /etc/services.d/aurral/run \
&& mkdir -p /config/data
# The upstream image sets ENTRYPOINT ["docker-entrypoint.sh"].
# Override it so s6-overlay (/init) owns startup instead.
ENTRYPOINT ["/init"]
CMD []