This commit is contained in:
Geicht 2025-11-15 03:57:31 +01:00 committed by GitHub
parent 037f379cf3
commit 5a55c4ff35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ COPY --from=ffmpeg-builder ./ffprobe/ffprobe /usr/bin/ffprobe
RUN apt-get clean && apt-get -y update && apt-get -y install --no-install-recommends \
nginx \
atomicparsley \
tini \
curl && rm -rf /var/lib/apt/lists/*
# install debug tools for testing environment
@ -90,4 +91,4 @@ EXPOSE 8000
RUN chmod +x ./run.sh
CMD ["./run.sh"]
CMD ["/bin/tini", "--", "./run.sh"]