There was an error while loading. Please reload this page.
1 parent 1e83c23 commit ac95dc4Copy full SHA for ac95dc4
2 files changed
backend/Dockerfile
@@ -12,8 +12,8 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12
COPY . app
13
WORKDIR /app
14
15
-RUN uv sync --extra pg
16
RUN chown -R 1001:0 /app
+RUN uv sync --extra pg --frozen --no-dev --no-editable
17
18
USER 1001
19
backend/entrypoint
@@ -1,5 +1,5 @@
1
#!/bin/sh
2
set -ex
3
4
-uv run alembic upgrade head
5
-exec uv run uvicorn acidwatch_api.app:app --host 0.0.0.0 --port 8000
+uv run --no-sync alembic upgrade head
+exec uv run --no-sync uvicorn acidwatch_api.app:app --host 0.0.0.0 --port 8000
0 commit comments