tahoe-lafs/Dockerfile
Brian Warner cf9b382863 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.
2015-06-07 14:30:58 -07:00

10 lines
142 B
Docker

FROM python:2.7
ADD . /tahoe-lafs
RUN \
cd /tahoe-lafs && \
make && \
ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
WORKDIR /root