Lukeetah commited on
Commit
2bbb4e4
verified
1 Parent(s): d7616f6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvcr.io/nvidia/pytorch:25.06-py3
2
+
3
+ WORKDIR /nexus
4
+ COPY requirements.txt .
5
+ RUN pip install -r requirements.txt
6
+
7
+ # Instalaci贸n de backend cient铆fico
8
+ RUN apt-get update && apt-get install -y \
9
+ ffmpeg \
10
+ libsm6 \
11
+ libxext6
12
+
13
+ COPY . .
14
+ EXPOSE 7860
15
+
16
+ CMD ["python", "NEXUS_CORE.py"]