mirror of
https://github.com/tcsenpai/sdnext_docker.git
synced 2025-06-04 10:20:11 +00:00
18 lines
367 B
Docker
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
|
|
|