mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
10 lines
142 B
Docker
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
|