fix(docker): Ensure SupervisorD daemon config directory exists.

ref: #363 #371
This commit is contained in:
2024-10-31 15:19:50 +09:30
parent 8479130ef1
commit ea8a054005
3 changed files with 3 additions and 0 deletions

View File

@ -141,6 +141,7 @@ RUN pip --disable-pip-version-check list --outdated --format=json | \
exit 1; \
fi; \
chmod +x /entrypoint.sh; \
mkdir -p /etc/supervisor/conf.d; \
export

View File

@ -2,6 +2,8 @@
set -e
mkdir -p /etc/supervisor/conf.d;
if [ "$1" == "" ]; then

View File