updated docker to use development server for live reloading

This commit is contained in:
Edward Tirado Jr 2025-05-29 17:49:28 -05:00
parent c16fddf9b4
commit 9a5685a500

View file

@ -34,5 +34,4 @@ ENV PYTHONUNBUFFERED=1
USER web USER web
EXPOSE 8000 EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "djangodocker.wsgi:application"]