]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - misc/build_helpers/Dockerfile
155ed846f8f368a7e2a86fe8d223a9e650a23c27
[tahoe-lafs/tahoe-lafs.git] / misc / build_helpers / 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