From c79cda2c69d246b2326c1f444991c047dfcb7210 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Sun, 7 Jun 2015 14:24:04 -0700 Subject: [PATCH] Dockerfile: fix ADD path to deal with non-root location --- misc/build_helpers/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ -- 2.37.2