From cf9b38286375c3c1961c244fd4a7941bb7727d70 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Sun, 7 Jun 2015 14:30:58 -0700
Subject: [PATCH] move Dockerfile back to root. DockerHub can't handle it
 elsewhere.

It looks like DockerHub's automated builds only have access to the
subtree of the source checkout at+below the Dockerfile. Putting the
Dockerfile in misc/build_helpers/ meant that the build process only had
access to misc/build_helpers/, not the full source tree.
---
 misc/build_helpers/Dockerfile => Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename misc/build_helpers/Dockerfile => Dockerfile (84%)

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