tahoe-lafs/Dockerfile
2015-05-10 14:07:48 +02:00

11 lines
190 B
Docker

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