Spaces:
Sleeping
Sleeping
File size: 407 Bytes
0284357 7362881 0284357 7362881 0284357 7362881 0907a28 0284357 9ccd8c1 7362881 a3fc548 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# 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 chmod 777 uploads
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:7860", "flask-api:app"] |