fix Bug 511
[osm/LW-UI.git] / Dockerfile
index 0b2f05a..4914e93 100644 (file)
@@ -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"]