Files
ViolaJones/python/Dockerfile
2025-08-20 22:53:18 +02:00

17 lines
339 B
Docker

FROM nvidia/cuda:13.0.0-devel-ubi9
RUN dnf install -y \
make-1:4.3-8.el9 \
python3.12-3.12.9-1.el9_6.1 \
&& dnf clean all \
&& ln -s /usr/bin/python3.12 /usr/bin/python
WORKDIR /home/ViolaJones/python
COPY Makefile activate.sh requirements.txt ./
RUN make venv && rm requirements.txt
COPY *.py ./
ENTRYPOINT ["make"]
CMD ["start"]