NextLevel / Dockerfile
Lukeetah's picture
Create Dockerfile
2bbb4e4 verified
raw
history blame contribute delete
289 Bytes
FROM nvcr.io/nvidia/pytorch:25.06-py3
WORKDIR /nexus
COPY requirements.txt .
RUN pip install -r requirements.txt
# Instalación de backend científico
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6
COPY . .
EXPOSE 7860
CMD ["python", "NEXUS_CORE.py"]