🐳 Update codebase 🐳

Dockerfile
This commit is contained in:
casjay
2025-10-31 12:18:21 -04:00
parent 7a31330230
commit 015666adee

View File

@@ -16,7 +16,7 @@ ARG SHELL_OPTS="set -e -o pipefail"
ARG SERVICE_PORT="80"
ARG EXPOSE_PORTS="53/tcp 53/udp"
ARG PHP_VERSION="php82"
ARG PHP_VERSION="php84"
ARG NODE_VERSION="system"
ARG NODE_MANAGER="system"
@@ -54,7 +54,7 @@ ARG PHP_SERVER
ARG SHELL_OPTS
ARG PATH
ARG PACK_LIST="bind bind-tools bind-dnssec-root bind-plugins nginx \php82-fpm tor "
ARG PACK_LIST="bind bind-tools bind-dnssec-root bind-plugins nginx $PHP_VERSION-fpm tor "
ENV ENV=~/.profile
ENV SHELL="/bin/sh"
@@ -252,5 +252,8 @@ VOLUME [ "/config","/data" ]
EXPOSE ${SERVICE_PORT} ${ENV_PORTS}
ENTRYPOINT [ "tini","--","/usr/local/bin/entrypoint.sh" "start" ]
STOPSIGNAL SIGRTMIN+3
CMD [ "tail", "-f", "/dev/null" ]
ENTRYPOINT [ "tini", "-p", "SIGTERM","--", "/usr/local/bin/entrypoint.sh", "start" ]
HEALTHCHECK --start-period=10m --interval=5m --timeout=15s CMD [ "/usr/local/bin/entrypoint.sh", "healthcheck" ]