]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Dockerfile
Add multi-party-conflict-detection.rst.
[tahoe-lafs/tahoe-lafs.git] / Dockerfile
1 FROM python:2.7
2
3 ADD . /tahoe-lafs
4 RUN \
5   cd /tahoe-lafs && \
6   git pull --depth=100 && \
7   make && \
8   ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
9
10 WORKDIR /root