Properly fix Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-03 14:29:39 +01:00
parent b695a35fb1
commit eec8f1b9f5
2 changed files with 10 additions and 15 deletions

View File

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