fix(server): properly handle SIGTERM (#3350)

* use tini init

* Move python into CMD

* Use tini as entrypoint

* Toggle executable bit

* Avoid compose changes

* Adapt web entrypoint
This commit is contained in:
bt90 2023-07-21 16:20:04 +02:00 committed by GitHub
parent 6668964d92
commit bc885f3644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 5 deletions

View file

@ -3,7 +3,7 @@ FROM node:18.16.0-alpine3.18@sha256:9036ddb8252ba7089c2c83eb2b0dcaf74ff1069e8ddf
WORKDIR /usr/src/app
EXPOSE 3000
RUN apk add --no-cache setpriv
RUN apk add --no-cache setpriv tini
FROM base as builder
@ -39,6 +39,6 @@ COPY --from=prod /usr/src/app/build ./build
COPY package.json package-lock.json ./
COPY entrypoint.sh ./
ENTRYPOINT ["/bin/sh"]
ENTRYPOINT ["tini", "--", "/bin/sh"]
CMD ["entrypoint.sh"]