From: Brian Warner 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/?p=tahoe-lafs%2Ftahoe-lafs.git;a=commitdiff_plain;h=c79cda2c69d246b2326c1f444991c047dfcb7210 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 && \