FROM python

RUN pip install django

RUN django-admin startproject demo_app

WORKDIR demo_app/demo_app

CMD python manage.py runserver 0.0.0.0:80