first commit

This commit is contained in:
enrilinux
2026-03-08 12:54:08 +01:00
parent 9ad5408a5d
commit f94333c2f9
7 changed files with 229 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.11
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs
COPY app ./app
RUN mkdir downloads
CMD ["uvicorn","app.main:app","--host","0.0.0.0","--port","8000"]