mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-03 09:19:24 +00:00
10 lines
136 B
Docker
10 lines
136 B
Docker
FROM python:slim
|
|
|
|
COPY app /app
|
|
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
CMD ["/app/p2pool_statistics.py"]
|