netron / Dockerfile
emon-j's picture
Update Dockerfile
c770d93 verified
raw
history blame contribute delete
120 Bytes
FROM python:3.9
WORKDIR /app
RUN pip install netron
EXPOSE 7860
CMD ["netron", "--host", "0.0.0.0", "--port", "7860"]