Updated Dockerfiles

This commit is contained in:
saundersp
2025-08-20 22:53:18 +02:00
parent b1abaed9e3
commit c55dd14a89
3 changed files with 10 additions and 7 deletions

View File

@@ -1,12 +1,15 @@
FROM nvidia/cuda:12.6.2-devel-ubi9
FROM nvidia/cuda:13.0.0-devel-ubi9
RUN dnf install -y python3.12-3.12.1-4.el9_4.4 \
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
RUN make venv && rm requirements.txt
COPY *.py ./
ENTRYPOINT ["make"]