From e715293620ae73fb4b5729da38e530c3b79fcbd8 Mon Sep 17 00:00:00 2001 From: Lungsangg Date: Tue, 23 Jun 2026 11:33:22 +0530 Subject: [PATCH] update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35bd1b7..ce0e0d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,5 +28,5 @@ COPY . /app # Expose the port that the app runs on EXPOSE 8001 -# Command to run the application -CMD ["sh", "-c", "poetry run alembic upgrade head && poetry run uvicorn worker_api.app:api --host 0.0.0.0 --port 8001 --log-level debug"] +# Command to run the application (skip alembic since migrations are managed by app-pecha-backend) +CMD ["uvicorn", "worker_api.app:api", "--host", "0.0.0.0", "--port", "8001"]