Base Dockerfile initial version.

This commit is contained in:
pataquets 2015-05-10 14:07:48 +02:00
parent b32664b451
commit 8053c42675

10
Dockerfile Normal file
View File

@ -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