mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-05-28 13:24:23 +00:00
10 lines
146 B
Docker
10 lines
146 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
|