🗃️ Committing everything that changed 🗃️

Dockerfile
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/php.sh
rootfs/usr/local/etc/docker/init.d/tor.sh
This commit is contained in:
casjay
2025-01-06 11:06:25 -05:00
parent 966239aaee
commit 5fb5fc3044
4 changed files with 19 additions and 11 deletions

View File

@@ -166,6 +166,7 @@ RUN echo "Running final commands before cleanup"; \
RUN echo "Deleting unneeded files"; \
$SHELL_OPTS; \
pkmgr clean; \
rm -Rf /etc/tor/*.sample || true; \
rm -Rf "/config" "/data" || true; \
rm -rf /etc/systemd/system/*.wants/* || true; \
rm -rf /lib/systemd/system/systemd-update-utmp* || true; \
@@ -251,6 +252,5 @@ VOLUME [ "/config","/data" ]
EXPOSE ${SERVICE_PORT} ${ENV_PORTS}
CMD [ "tail", "-f", "/dev/null" ]
ENTRYPOINT [ "tini","--","/usr/local/bin/entrypoint.sh" ]
HEALTHCHECK --start-period=10m --interval=5m --timeout=15s CMD [ "/usr/local/bin/entrypoint.sh", "healthcheck" ]