bpy-nvidia-T4 / Dockerfile
kolibril13
simplify
b5e9575
raw
history blame
301 Bytes
FROM jupyter/base-notebook:4d70cf8da953
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN mkdir ./pages
COPY /pages ./pages
ENV PROJ_LIB='/opt/conda/share/proj'
USER root
RUN chown -R ${NB_UID} ${HOME}
USER ${NB_USER}
EXPOSE 8765
CMD ["solara", "run", "./pages", "--host=0.0.0.0"]