FROM nvidia/cuda:12.4.1-devel-ubi9 as builder RUN dnf install -y python3.11-3.11.5-1.el9_3 && dnf clean all RUN ln -s /usr/bin/python3 /usr/bin/python WORKDIR /home/ViolaJones/python COPY Makefile activate.sh requirements.txt ./ RUN make venv COPY *.py ./ ENTRYPOINT ["make"] CMD ["start"]