Compare commits

..

No commits in common. "fecbc4ffc7d40fc10c5a163926c1a71f96b6b670" and "1425fb25e19f253a41d16f78274524fd52bdcc4b" have entirely different histories.

View File

@ -13,7 +13,7 @@ RUN make clean && make build
FROM docker:25.0.5-dind FROM docker:25.0.5-dind
USER root USER root
RUN apk add --no-cache \ RUN apk add --no-cache \
git bash supervisor python3 py3-pip fuse-overlayfs git bash supervisor python3 py3-pip
RUN pip3 install --break-system-packages supervisord-dependent-startup RUN pip3 install --break-system-packages supervisord-dependent-startup
@ -28,9 +28,6 @@ RUN chmod +x /healthcheck.sh
ENV DOCKER_PRUNE_INTERVAL="0 0 * * *" ENV DOCKER_PRUNE_INTERVAL="0 0 * * *"
# Supress tini warning
ENV TINI_SUBREAPER=true
# Add Crontab for root user # Add Crontab for root user
RUN echo "${DOCKER_PRUNE_INTERVAL} echo Pruning docker volumes && docker volume prune -af" > .crontab.txt && crontab .crontab.txt RUN echo "${DOCKER_PRUNE_INTERVAL} echo Pruning docker volumes && docker volume prune -af" > .crontab.txt && crontab .crontab.txt