mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-17 00:07:47 +00:00
9 lines
117 B
Text
9 lines
117 B
Text
|
FROM python:slim
|
||
|
|
||
|
COPY app /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD ["/app/p2pool_statistics.py"]
|