Skip to content

Commit c5dbb19

Browse files
Run alembic and uvicorn directly
uv is not included in the production image, let's just run the commands from the python env directly.
1 parent 7a31fd7 commit c5dbb19

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/entrypoint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
set -ex
33

4-
uv run --no-sync alembic upgrade head
5-
exec uv run --no-sync uvicorn acidwatch_api.app:app --host 0.0.0.0 --port 8000
4+
alembic upgrade head
5+
exec uvicorn acidwatch_api.app:app --host 0.0.0.0 --port 8000

0 commit comments

Comments
 (0)