sdnext_docker/Dockerfile
2024-10-26 18:24:16 +02:00

18 lines
367 B
Docker

FROM nvidia/cuda:12.6.2-base-ubuntu22.04
RUN apt-get update && apt-get install -y curl git
# Install Python
RUN apt-get install -y python3 python3-pip python3-venv
# Install Bash
RUN apt-get install -y bash
# Install dos2unix
RUN apt-get install -y dos2unix
# Install pip requirements
#COPY app/automatic/requirements.txt .
#RUN pip install -r requirements.txt