From ab1d09953b1971b229f86a60ff29afa2334bb855 Mon Sep 17 00:00:00 2001 From: Jeremy Klein Date: Mon, 7 Oct 2024 23:36:06 -0700 Subject: [PATCH] Switch away from ENTRYPOINT in the dockerfile to enhance configuration. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index de8d354..c31b93f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,7 @@ RUN pip install --upgrade pip wheel setuptools && \ EXPOSE 8081 -ENTRYPOINT ["gunicorn"] -CMD ["-b", "0.0.0.0:8081", "-k", "uvicorn.workers.UvicornWorker", "nwc_backend.server:app"] +CMD ["gunicorn", "-b", "0.0.0.0:8081", "-k", "uvicorn.workers.UvicornWorker", "nwc_backend.server:app"] COPY alembic.ini /app COPY alembic /app/alembic