9 lines
117 B
Docker
9 lines
117 B
Docker
FROM python:slim
|
|
|
|
COPY app /app
|
|
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["/app/p2pool_statistics.py"]
|