diff --git a/entrypoint.sh b/entrypoint.sh index 989c038..fef04ae 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,10 @@ #!/bin/ash +# Activate the virtual environment +source .virtualenv/bin/activate + +# Run Django migrations ./manage.py migrate + +# Start the Django development server exec ./manage.py runserver 0:8080