https://github.com/OpenSVBRDF/OpenSVBRDF_source_code
Tip revision: 27d60e6e95bc66f65d1780b114f2aa228992e7f4 authored by Xiaohe Ma on 29 October 2024, 07:13:38 UTC
Merge pull request #7 from BeAShaper/main
Merge pull request #7 from BeAShaper/main
Tip revision: 27d60e6
Dockerfile
FROM nvidia/cuda:12.1.0-devel-ubuntu22.04
RUN apt-get update && \
apt-get install -y python3 curl libgl1 libglib2.0-0
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3
COPY . /app
WORKDIR /app
RUN pip install -r /app/requirements.txt
RUN ln -s /usr/bin/python3 /usr/bin/python
