Docker: combine entrypoints

9e8277882cc42a59718443d07ae384a3a93d7cfc

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -4Showing whitespace changes
Dockerfile+2 -4
@@ -6,9 +6,6 @@ ARG APP_HOME=/home/node/app
66# Install system dependencies
77RUN apk add gcompat tini git
88
9-# Ensure proper handling of kernel signals
10-ENTRYPOINT [ "tini", "--" ]
11-
129# Create app directory
1310WORKDIR ${APP_HOME}
1411
@@ -42,4 +39,5 @@ RUN \
4239
4340EXPOSE 8000
4441
45-ENTRYPOINT [ "./docker-entrypoint.sh" ]
42+# Ensure proper handling of kernel signals
43+ENTRYPOINT ["tini", "--", "./docker-entrypoint.sh"]