Merge pull request #165 from pataquets/add-dockerfile

Base Dockerfile initial version.
This commit is contained in:
Daira Hopwood 2015-05-11 21:06:17 +01:00
commit c999a17405

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:2.7
ADD . /tahoe-lafs
RUN \
cd /tahoe-lafs && \
make && \
ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
WORKDIR /root