🚀 Initialer Commit: Gitea Sync AI Service mit Docker + OpenWebUI-Vorbereitung
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
# Build stage (optional hier für jetzt reicht)
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Abhängigkeiten installieren
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Applikation kopieren
|
||||
COPY app/ ./app
|
||||
|
||||
# Exponierter Port
|
||||
EXPOSE 8000
|
||||
|
||||
# Starte den Server
|
||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
||||
Reference in New Issue
Block a user