Add code, have fun!

This commit is contained in:
Wrigley the Buffalo
2016-02-10 19:55:33 +01:00
parent 15d88d3dd9
commit 841cabe8c6
37 changed files with 3423 additions and 3 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.5
RUN apt-get update && apt-get -y install vim
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN pip install --upgrade pip
RUN pip install --no-cache-dir pytest pytest-cov
RUN pip install --no-cache-dir ipython ipdb
COPY . /usr/src/app/
RUN python setup.py develop