From b49453a63d0f0ceb260d1f716e5760cd2f95fe45 Mon Sep 17 00:00:00 2001 From: Ismail Pelaseyed Date: Thu, 22 Feb 2024 08:53:25 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0bb3037e..832ad9fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,4 +17,4 @@ RUN poetry install --no-root && rm -rf $POETRY_CACHE_DIR ENV PORT="8080" # Run main.py when the container launches -CMD exec gunicorn --bind :$PORT --workers 2 --timeout 0 --worker-class uvicorn.workers.UvicornWorker --threads 8 main:app \ No newline at end of file +RUN gunicorn --bind :$PORT --workers 2 --timeout 0 --worker-class uvicorn.workers.UvicornWorker --threads 8 main:app \ No newline at end of file