commit 8c1480126dba1a82e0cc6c5f5b85986ee1f388a0 Author: Musab Erdem Date: Mon Jan 5 06:48:55 2026 +0100 Dockerfile hinzugefügt diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..22a6434 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.11-slim + +WORKDIR /app + +RUN pip install --no-cache-dir fastapi uvicorn youtube-transcript-api + +COPY server.py . + +CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]