Skip to content

Commit

Permalink
Fix: [Dockerfile] ENTRYPOINT を配列形式に変更
Browse files Browse the repository at this point in the history
- UvicornがSIGTERMを受け取れるようにするため
  • Loading branch information
na2na-p committed Dec 26, 2024
1 parent 493d35b commit 037bae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ COPY --from=client-builder /code/client/dist/ /code/client/dist/
COPY ./config.example.yaml /code/config.example.yaml

# KonomiTV サーバーを起動
ENTRYPOINT /code/server/.venv/bin/python KonomiTV.py
ENTRYPOINT ["/code/server/.venv/bin/python", "KonomiTV.py"]

0 comments on commit 037bae7

Please sign in to comment.