From: pataquets <amontero@tinet.org>
Date: Sun, 10 May 2015 12:07:48 +0000 (+0200)
Subject: Base Dockerfile initial version.
X-Git-Tag: allmydata-tahoe-1.10.1a1~14^2~1
X-Git-Url: https://git.rkrishnan.org/listings//%22%22.?a=commitdiff_plain;h=8053c426756b262c32895d5eed616d7e7bbfbac7;p=tahoe-lafs%2Ftahoe-lafs.git

Base Dockerfile initial version.
---

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..9e38bebd
--- /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