Add tini for sigterm handling
parent
9739b27718
commit
a2b802a5de
|
|
@ -33,7 +33,8 @@ ENV BLACKLIST_USERS ''
|
||||||
ENV WHITELIST_USERS ''
|
ENV WHITELIST_USERS ''
|
||||||
|
|
||||||
|
|
||||||
RUN addgroup --system jellyplex_user && \
|
RUN apk add --no-cache tini && \
|
||||||
|
addgroup --system jellyplex_user && \
|
||||||
adduser --system --no-create-home jellyplex_user --ingroup jellyplex_user && \
|
adduser --system --no-create-home jellyplex_user --ingroup jellyplex_user && \
|
||||||
mkdir -p /app && \
|
mkdir -p /app && \
|
||||||
chown -R jellyplex_user:jellyplex_user /app
|
chown -R jellyplex_user:jellyplex_user /app
|
||||||
|
|
@ -48,4 +49,5 @@ COPY --chown=jellyplex_user:jellyplex_user . .
|
||||||
|
|
||||||
USER jellyplex_user
|
USER jellyplex_user
|
||||||
|
|
||||||
|
ENTRYPOINT ["/sbin/tini", "--"]
|
||||||
CMD ["python", "-u", "main.py"]
|
CMD ["python", "-u", "main.py"]
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,11 @@ ENV BLACKLIST_USERS ''
|
||||||
ENV WHITELIST_USERS ''
|
ENV WHITELIST_USERS ''
|
||||||
|
|
||||||
|
|
||||||
RUN addgroup --system jellyplex_user && \
|
RUN apt-get update && \
|
||||||
|
apt-get install tini --yes --no-install-recommends && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
|
addgroup --system jellyplex_user && \
|
||||||
adduser --system --no-create-home jellyplex_user --ingroup jellyplex_user && \
|
adduser --system --no-create-home jellyplex_user --ingroup jellyplex_user && \
|
||||||
mkdir -p /app && \
|
mkdir -p /app && \
|
||||||
chown -R jellyplex_user:jellyplex_user /app
|
chown -R jellyplex_user:jellyplex_user /app
|
||||||
|
|
@ -48,4 +52,5 @@ COPY --chown=jellyplex_user:jellyplex_user . .
|
||||||
|
|
||||||
USER jellyplex_user
|
USER jellyplex_user
|
||||||
|
|
||||||
|
ENTRYPOINT ["/bin/tini", "--"]
|
||||||
CMD ["python", "-u", "main.py"]
|
CMD ["python", "-u", "main.py"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue