mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-16 15:57:39 +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"]
|