Lobi-Gmbh commited on
Commit
359e550
·
verified ·
1 Parent(s): 3541274

Nano-AI 1.0 Beta

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -4
Dockerfile CHANGED
@@ -2,15 +2,11 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
5
- # Abhängigkeiten kopieren und installieren
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt --timeout=1000 --retries=5
8
 
9
- # Den gesamten Code kopieren
10
  COPY . .
11
 
12
- # Port freigeben
13
  EXPOSE 7860
14
 
15
- # App starten
16
  CMD ["python", "app.py"]
 
2
 
3
  WORKDIR /app
4
 
 
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt --timeout=1000 --retries=5
7
 
 
8
  COPY . .
9
 
 
10
  EXPOSE 7860
11
 
 
12
  CMD ["python", "app.py"]