netron / Dockerfile
1aurent's picture
add Dockerfile, requirements.txt and modify README.md
2f602cb unverified
raw
history blame contribute delete
357 Bytes
FROM python:3.12
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Paris
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
CMD ["netron", "--host=0.0.0.0", "--port=7860"]