Newer
Older
NodeStat / Dockerfile
@yangyang xie yangyang xie 12 days ago 189 bytes first commit
FROM python:3.11-slim

WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY node_info_daemon.py .

EXPOSE 8080
CMD ["python", "node_info_daemon.py"]