]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Merge pull request #165 from pataquets/add-dockerfile
authorDaira Hopwood <daira@jacaranda.org>
Mon, 11 May 2015 20:06:17 +0000 (21:06 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Mon, 11 May 2015 20:06:17 +0000 (21:06 +0100)
Base Dockerfile initial version.

Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..6b45619
--- /dev/null
@@ -0,0 +1,9 @@
+FROM python:2.7
+
+ADD . /tahoe-lafs
+RUN \
+  cd /tahoe-lafs && \
+  make && \
+  ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
+
+WORKDIR /root