]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Dockerfile
Fix an error handling path that would never have been reached. fixes ticket:2543
[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