This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/Dockerfile.cpu

17 lines
379 B
Text
Raw Normal View History

2022-03-20 16:38:38 +00:00
FROM python:3.8
RUN apt update -y
RUN apt install libgl1 -y # or install opencv opencv-python-headless instead
2022-03-20 16:38:38 +00:00
RUN pip3 install \
torch==1.10.2+cpu \
torchvision==0.11.3+cpu \
torchaudio==0.10.2+cpu \
-f https://download.pytorch.org/whl/cpu/torch_stable.html
COPY requirements.txt /requirements.txt
2022-03-20 16:38:38 +00:00
RUN pip3 install -r requirements.txt
2022-03-20 16:38:38 +00:00
ENTRYPOINT ["bash"]