Add Docker support with Dockerfile and entrypoint
All checks were successful
Docker / build (push) Successful in 28s

This commit is contained in:
krek0 2026-05-03 11:36:34 +02:00
parent faf880a236
commit 4bc1afa0cb
8 changed files with 118 additions and 2 deletions

5
entrypoint.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/sh
set -e
python manage.py migrate --noinput
exec gunicorn photo21.wsgi:application --bind 0.0.0.0:8000 --workers 3