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
6# Install system dependencies6# Install system dependencies
7RUN apk add gcompat tini git7RUN apk add gcompat tini git
88
9# Ensure proper handling of kernel signals
10ENTRYPOINT [ "tini", "--" ]
11
12# Create app directory9# Create app directory
13WORKDIR ${APP_HOME}10WORKDIR ${APP_HOME}
1411
@@ -42,4 +39,5 @@ RUN \
4239
43EXPOSE 800040EXPOSE 8000
4441
45ENTRYPOINT [ "./docker-entrypoint.sh" ]42# Ensure proper handling of kernel signals
43ENTRYPOINT ["tini", "--", "./docker-entrypoint.sh"]