fast-api-omr / Dockerfile
mertbozkurt's picture
Update Dockerfile
0907a28 verified
raw
history blame
No virus
385 Bytes
# 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"]