FROM python:2.7

## installing django
RUN pip install django==1.10

## install uWSGI
RUN pip install uwsgi

## creating demo django project
RUN django-admin startproject demo_app

## moving to source dir
WORKDIR demo_app

CMD /bin/bash