Last active
May 1, 2020 02:37
-
-
Save StianHanssen/20e241cbe99bcc9dbaa0b8cd7cc85aec to your computer and use it in GitHub Desktop.
Dockerfile for https://github.com/ifzhang/FairMOT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM pytorch/pytorch:1.2-cuda10.0-cudnn7-devel | |
WORKDIR /usr/src/app | |
COPY ./requirements.txt /usr/src/app | |
COPY ./src/lib/models/networks/DCNv2 /usr/src/app/src/lib/models/networks/DCNv2 | |
RUN apt update && apt install -y ffmpeg libsm6 libxrender-dev | |
RUN pip install Cython | |
RUN pip install -r requirements.txt | |
RUN cd src/lib/models/networks/DCNv2 sh make.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment