mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 09:46:18 +00:00
11 lines
190 B
Docker
11 lines
190 B
Docker
FROM python:2.7
|
|
|
|
ADD . /tahoe-lafs
|
|
RUN \
|
|
sed -i "s/\# alias/alias/" /root/.bashrc && \
|
|
cd /tahoe-lafs && \
|
|
make && \
|
|
ln -vs /tahoe-lafs/bin/tahoe /usr/local/bin/tahoe
|
|
|
|
WORKDIR /root
|