This commit is contained in:
geicht 2025-10-01 18:16:36 +02:00
parent 0a92d3d0a4
commit 9ec4ae9d2e
1 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,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
@ -88,4 +89,4 @@ EXPOSE 8000
RUN chmod +x ./run.sh
CMD ["./run.sh"]
CMD ["/bin/tini", "--", "./run.sh"]