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 python:3.8-slim-buster | |
RUN apt-get update -y | |
# gcc compiler and opencv prerequisites | |
RUN apt-get -y install nano git build-essential libglib2.0-0 libsm6 libxext6 libxrender-dev | |
# Detectron2 prerequisites | |
RUN pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html | |
RUN pip install cython |