netron-docker / Dockerfile
brian-xetdata's picture
No frills netron viewer
4fb0ad8
raw
history blame contribute delete
222 Bytes
FROM python:3.9
ENV Path="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chmod=0755 . /app
CMD "/app/wrapper.sh"