photo26/entrypoint.sh
krek0 792f7517e3
All checks were successful
Docker / build (release) Successful in 7s
Add Docker support with Dockerfile and entrypoin
2026-05-03 16:54:46 +02:00

7 lines
203 B
Bash

#!/bin/sh
set -e
python manage.py collectstatic --noinput
python manage.py migrate --noinput
python manage.py create_default_admin
exec gunicorn photo21.wsgi:application --bind 0.0.0.0:8000 --workers 3