mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
11 lines
146 B
Docker
11 lines
146 B
Docker
FROM python:2.7
|
|
|
|
ADD . /tahoe-lafs
|
|
RUN \
|
|
cd /tahoe-lafs && \
|
|
git pull --depth=100 && \
|
|
pip install . && \
|
|
rm -rf ~/.cache/
|
|
|
|
WORKDIR /root
|