15 lines
No EOL
334 B
Text
15 lines
No EOL
334 B
Text
FROM python:3.8
|
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install libgl1 -y # or install opencv opencv-python-headless instead
|
|
|
|
RUN pip3 install torch \
|
|
torchvision==0.11.3 \
|
|
-f https://download.pytorch.org/whl/rocm4.2/torch_stable.html
|
|
|
|
COPY requirements.txt /requirements.txt
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
ENTRYPOINT ["bash"] |