first commit

This commit is contained in:
2026-04-20 08:26:37 +02:00
commit cce2b9bc39
21 changed files with 14944 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# syntax=docker/dockerfile:1
FROM python:3.10
COPY app/ .
#COPY requirements.txt requirements.txt
#RUN apt-get update && apt-get install ffmpeg -y
RUN pip3 install -r requirements.txt
CMD ["python", "app.py"]
#CMD ["gunicorn" , "-b", "0.0.0.0:8000" , "app:app"]