Merge pull request 'chore: switch from gunicorn to Django development server in dockerfile' (#21) from feature/meetings into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/21
This commit is contained in:
Saani 2025-11-23 19:19:59 +00:00
commit fdb8dde94f

View File

@ -29,4 +29,5 @@ EXPOSE 8000
CMD \
python manage.py migrate && \
python manage.py collectstatic --noinput && \
gunicorn config.wsgi:application --bind 0.0.0.0:8000 --workers 3
python manage.py runserver 0.0.0.0:8000 && \
# gunicorn config.wsgi:application --bind 0.0.0.0:8000 --workers 3