We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe34ac9 commit 4650af2Copy full SHA for 4650af2
core/Dockerfile
@@ -11,7 +11,8 @@ FROM "${DOCKER_HUB_PROXY}python:3.12-slim-bookworm" AS php-base
11
RUN apt-get update; apt-get install -y --no-install-recommends \
12
lsb-release \
13
ca-certificates \
14
- curl
+ curl \
15
+ tini
16
17
18
FROM php-base AS composer-build
core/files/entrypoint.sh
@@ -77,4 +77,4 @@ export NGINX_SET_REAL_IP_FROM=${NGINX_SET_REAL_IP_FROM}
77
export NGINX_CLIENT_MAX_BODY_SIZE=${NGINX_CLIENT_MAX_BODY_SIZE:-50M}
78
79
# start supervisord using the main configuration file so we have a socket interface
80
-/usr/local/bin/supervisord -c /etc/supervisor/supervisord.conf
+exec /usr/bin/tini -- /usr/local/bin/supervisord -c /etc/supervisor/supervisord.conf
0 commit comments