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