projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b32664b
)
Base Dockerfile initial version.
author
pataquets
<amontero@tinet.org>
Sun, 10 May 2015 12:07:48 +0000
(14:07 +0200)
committer
pataquets
<amontero@tinet.org>
Sun, 10 May 2015 12:07:48 +0000
(14:07 +0200)
Dockerfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Dockerfile
b/Dockerfile
new file mode 100644
(file)
index 0000000..
9e38beb
--- /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