diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..9e38bebd4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:2.7 + +ADD . /tahoe-lafs +RUN \ + sed -i "s/\# alias/alias/" /root/.bashrc && \ + cd /tahoe-lafs && \ + make && \ + ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe + +WORKDIR /root