Skip to content

Commit

Permalink
fix: docker CMD and configure pyproject build-system (#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed authored Sep 7, 2024
1 parent ea43517 commit 26b34f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ RUN poetry install --without dev
# in /app/canary/config/config.py
# Users should mount a read/writable volume for /app/data/runtime

CMD ["canary"]
CMD ["poetry", "run", "canary"]
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Canary"
version = "4.0.0"
version = "4.0.1"
description = ""
license = "GPL-3.0-only"
repository = "https://github.com/idoneam/Canary"
Expand Down Expand Up @@ -52,3 +52,7 @@ types-tabulate = "^0.8.11"

[tool.black]
line-length = 120

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 26b34f7

Please sign in to comment.