Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Loading