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