]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Dockerfile
NEWS: first editing pass
[tahoe-lafs/tahoe-lafs.git] / Dockerfile
1 FROM python:2.7
2
3 ADD . /tahoe-lafs
4 RUN \
5   cd /tahoe-lafs && \
6   make && \
7   ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
8
9 WORKDIR /root