A dockerfile.

This commit is contained in:
Rob
2015-03-24 11:27:35 +00:00
parent 39005210a5
commit b917000b5d

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ubuntu
MAINTAINER Rob Haswell <me@robhaswell.co.uk>
RUN apt-get -qqy update
RUN apt-get -qqy upgrade
RUN apt-get -qqy install python-pip
ADD dropbot requirements.txt /usr/src/app/
WORKDIR /usr/src/app
RUN pip install -r requirements.txt
CMD ["python", "dropbot/cli.py", "-c", "env"]