Skip to content

Commit

Permalink
feat: use tini as process manager
Browse files Browse the repository at this point in the history
  • Loading branch information
DDSRem committed Jan 13, 2024
1 parent 4057c90 commit f162be2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions emby_library/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ RUN set -ex && \
grep \
sqlite \
docker \
curl
curl \
tini && \
rm -rf \
/root/.cache \
/tmp/*

WORKDIR /app

COPY --chmod=755 . /app

ENTRYPOINT [ "/app/entrypoint.sh" ]
ENTRYPOINT ["tini", "-g", "--", "/app/entrypoint.sh"]

0 comments on commit f162be2

Please sign in to comment.