adding docker build and run files

This commit is contained in:
sekka1
2015-01-27 10:33:45 -08:00
parent 66846b50a2
commit 6b2517ff93
2 changed files with 19 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ubuntu:14.04.1
RUN apt-get update -y
RUN apt-get install -y python-setuptools python-dev build-essential libffi-dev libssl-dev
WORKDIR /opt
ADD . /opt/app
WORKDIR /opt/app
RUN python setup.py build
RUN python setup.py install
CMD ["docker/run.sh"]