X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Dockerfile;h=4914e937119af1f573e89ba79c5f1fa8130ca82a;hb=refs%2Fchanges%2F81%2F6381%2F1;hp=0b2f05ac9e4a9a7c208845b05c1404cdd006fbb6;hpb=7fffafab0851bcfb1ca42d9b359517ca1a702bfd;p=osm%2FLW-UI.git diff --git a/Dockerfile b/Dockerfile index 0b2f05a..4914e93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,11 +14,9 @@ RUN pip install -r requirements.txt # delete the copy of the database inside the container (if exists) RUN rm -f db.sqlite3 -RUN python manage.py makemigrations sf_user projecthandler instancehandler vimhandler +RUN python manage.py makemigrations authosm RUN python manage.py migrate -RUN python manage.py shell -c "from projecthandler.osm_model import OsmProject; from sf_user.models import CustomUser; CustomUser.objects.create_superuser('admin', 'admin'); admin = CustomUser.objects.get(username='admin'); OsmProject.create_project('admin',admin,True, 'project admin','')" - EXPOSE 80 CMD ["python", "manage.py", "runserver", "0.0.0.0:80"]