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.
This commit is contained in:
Brian Warner 2015-06-07 14:30:58 -07:00
parent c79cda2c69
commit cf9b382863

View File

@ -1,6 +1,6 @@
FROM python:2.7
ADD ../.. /tahoe-lafs
ADD . /tahoe-lafs
RUN \
cd /tahoe-lafs && \
make && \