Nano-AI / Dockerfile
Happy AI Unknow
Nano-AI 1.0 Beta
81c57df verified
raw
history blame
314 Bytes
FROM python:3.9-slim
# Arbeitsverzeichnis setzen
WORKDIR /app
# Abhängigkeiten installieren
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Den App-Code kopieren
COPY . .
# Port freigeben (Standard für HF Spaces)
EXPOSE 7860
# Befehl zum Starten der App
CMD ["python", "app.py"]