Files
p2pool-salvium/docker-compose/statistics/Dockerfile

11 lines
136 B
Docker
Raw Normal View History

FROM python:slim
COPY app /app
WORKDIR /app
RUN pip install -r requirements.txt
2024-12-20 13:27:11 +00:00
STOPSIGNAL SIGINT
CMD ["/app/p2pool_statistics.py"]