fast-api-omr / Dockerfile
mertbozkurt's picture
Update Dockerfile
9ccd8c1 verified
raw
history blame contribute delete
No virus
407 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 chmod 777 uploads
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:7860", "flask-api:app"]