mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
063cbbc599
Former-commit-id: f6185d67a4bc50aa7ec1b8168aab3f92721c4965
10 lines
230 B
Docker
10 lines
230 B
Docker
FROM nvcr.io/nvidia/pytorch:21.06-py3
|
|
|
|
RUN rm -rf /workspace/*
|
|
WORKDIR /workspace/unet
|
|
|
|
ADD requirements.txt .
|
|
RUN pip install --no-cache-dir --upgrade --pre pip
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
ADD . .
|