Run Dockerfile via entrypoint.sh
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-03 13:04:05 +01:00
parent 7d31f6f416
commit 811e7771cc
2 changed files with 10 additions and 2 deletions

8
entrypoint.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/env bash
# Apply database migrations
echo "Apply database migrations"
python manage.py migrate
# Start server
echo "Starting server"
python manage.py runserver 0.0.0.0:8000