Markdown / Dockerfile
GauthierDemonchy
Mise à jour: passage à Python 3.11 pour compatibilité avec markitdown
02339e6
Raw
History Blame Contribute Delete
235 Bytes
FROM python:3.11-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code/
EXPOSE 7860
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]