mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
f55693b6a4
Former-commit-id: 7679965b6814e40a9bc7be694d30cfd4bb29b9f7
10 lines
230 B
Docker
10 lines
230 B
Docker
FROM nvcr.io/nvidia/pytorch:22.01-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 . .
|