idrlnet/Dockerfile

7 lines
183 B
Docker
Raw Permalink Normal View History

2021-07-05 11:18:12 +08:00
FROM pytorch/pytorch:1.7.0-cuda11.0-cudnn8-devel
2021-07-12 15:40:33 +08:00
LABEL maintainer="pengwei"
WORKDIR /idrlnet
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
RUN pip install -e .