Skip to content

Commit 92380f9

Browse files
committed
Fix gunicorn host and port args
1 parent 5e0cf05 commit 92380f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ EXPOSE 8001
2222
ENV PYTHONDONTWRITEBYTECODE=1
2323
ENV PYTHONUNBUFFERED=1
2424

25-
CMD ["poetry", "run", "gunicorn", "-k", "uvicorn.workers.UvicornWorker", "acidwatch_api.app:app", "--host", "0.0.0.0", "--port", "8000"]
25+
CMD ["poetry", "run", "gunicorn", "-b", "0.0.0.0:8000" "-k", "uvicorn.workers.UvicornWorker", "acidwatch_api.app:app"]

0 commit comments

Comments
 (0)