p2pool/docker-compose/statistics/Dockerfile
2024-12-20 13:27:11 +00:00

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"]