]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Dockerfile
Base Dockerfile initial version.
[tahoe-lafs/tahoe-lafs.git] / Dockerfile
1 FROM python:2.7
2
3 ADD . /tahoe-lafs
4 RUN \
5   sed -i "s/\# alias/alias/" /root/.bashrc && \
6   cd /tahoe-lafs && \
7   make && \
8   ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
9
10 WORKDIR /root