From: Brian Warner <warner@lothar.com>
Date: Sun, 7 Jun 2015 21:24:04 +0000 (-0700)
Subject: Dockerfile: fix ADD path to deal with non-root location
X-Git-Tag: allmydata-tahoe-1.10.1b1~7
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/frontends/using.html?a=commitdiff_plain;h=c79cda2c69d246b2326c1f444991c047dfcb7210;p=tahoe-lafs%2Ftahoe-lafs.git

Dockerfile: fix ADD path to deal with non-root location
---

diff --git a/misc/build_helpers/Dockerfile b/misc/build_helpers/Dockerfile
index 6b45619b..155ed846 100644
--- a/misc/build_helpers/Dockerfile
+++ b/misc/build_helpers/Dockerfile
@@ -1,6 +1,6 @@
 FROM python:2.7
 
-ADD . /tahoe-lafs
+ADD ../.. /tahoe-lafs
 RUN \
   cd /tahoe-lafs && \
   make && \