]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Base Dockerfile initial version.
authorpataquets <amontero@tinet.org>
Sun, 10 May 2015 12:07:48 +0000 (14:07 +0200)
committerpataquets <amontero@tinet.org>
Sun, 10 May 2015 12:07:48 +0000 (14:07 +0200)
Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..9e38beb
--- /dev/null
@@ -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