Update Dockerfile

This commit is contained in:
Brendan Goubin 2025-06-02 00:50:19 +02:00 committed by GitHub
parent 046bf03654
commit 021bde4d19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,8 +50,7 @@ ARG NUSQLITE3_PATH
RUN apk add --no-cache --update \
tzdata \
ffmpeg \
tini \
curl
tini
WORKDIR /app
@ -70,7 +69,7 @@ ENV SOURCE="docker"
ENV NUSQLITE3_DIR=${NUSQLITE3_DIR}
ENV NUSQLITE3_PATH=${NUSQLITE3_PATH}
HEALTHCHECK CMD curl --fail http://localhost:${PORT}/healthcheck || exit 1
HEALTHCHECK CMD wget --spider -q http://localhost:${PORT}/healthcheck || exit 1
ENTRYPOINT ["tini", "--"]
CMD ["node", "index.js"]