ladogton2010 commited on
Commit
41e8f3c
·
verified ·
1 Parent(s): d6069ab

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -11,6 +11,7 @@ RUN django-admin startproject mysite
11
  WORKDIR mysite
12
  RUN touch db.sqlite3
13
  RUN sed -i 's/ALLOWED_HOSTS = \[\]/ALLOWED_HOSTS = \["*"\]/g' mysite/settings.py;
 
14
  CMD python3 manage.py runserver 0:7860
15
 
16
 
 
11
  WORKDIR mysite
12
  RUN touch db.sqlite3
13
  RUN sed -i 's/ALLOWED_HOSTS = \[\]/ALLOWED_HOSTS = \["*"\]/g' mysite/settings.py;
14
+ RUN python3 manage.py startapp polls
15
  CMD python3 manage.py runserver 0:7860
16
 
17