Text-Converter / Docker
Avanish11's picture
Create Docker
aa91608 verified
raw
history blame contribute delete
239 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y \
libreoffice \
pandoc \
&& pip install -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "4"]