File size: 385 Bytes
0284357
 
7362881
0284357
 
7362881
0284357
7362881
0907a28
0284357
7362881
 
a3fc548
1
2
3
4
5
6
7
8
9
10
11
12
13
# Use the official Python 3.10.9 image
FROM python:3.10.9

# Copy the current directory contents into the container at .
COPY . .

# Set the working directory to /
WORKDIR /
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6  -y
# Install requirements.txt 
RUN pip install --no-cache-dir --upgrade -r /requirements.txt

CMD ["gunicorn", "-b", "0.0.0.0:7860", "flask-api:app"]