]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Dockerfile
fileutil.py: use ctypes.get_last_error() instead of GetLastError(). refs #1531
[tahoe-lafs/tahoe-lafs.git] / Dockerfile
1 FROM python:2.7
2
3 ADD . /tahoe-lafs
4 RUN \
5   cd /tahoe-lafs && \
6   make && \
7   ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
8
9 WORKDIR /root