initial commit

This commit is contained in:
root
2026-05-13 14:20:41 +00:00
commit 6e178d2012
6022 changed files with 399872 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.11-slim
RUN apt-get update \
&& apt-get install -y ffmpeg \
&& pip install --no-cache-dir fastapi uvicorn[standard] python-multipart boto3 aiofiles \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY app.py /app/app.py
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]