first commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM python:3.11
|
||||
|
||||
|
||||
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"]
|
||||
Reference in New Issue
Block a user