File size: 289 Bytes
2bbb4e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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"] |