From 3a87a170172e27ba250ed5f73f796a58f64b3adb Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Wed, 18 Mar 2026 22:03:10 -0400 Subject: [PATCH] Dockerfile updated to run uvicorn worker class to support asgi (was still gunicorn & wsgi) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e85f2dd..439c9ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,4 @@ RUN DJANGO_SECRET_KEY=build-dummy DJANGO_ALLOWED_HOST=localhost python manage.py RUN adduser --uid 1234 nonroot USER nonroot -CMD ["gunicorn", "--bind", ":8888", "core.wsgi:application"] \ No newline at end of file +CMD ["gunicorn", "--bind", ":8888", "-k", "uvicorn.workers.UvicornWorker", "core.asgi:application"] \ No newline at end of file