mypastebin/Dockerfile
2025-05-29 22:40:58 +02:00

26 lines
495 B
Docker

FROM python:3.9-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
libpq-dev \
build-essential \
python3-dev \
libmagic-dev \
mediainfo \
tesseract-ocr \
libtesseract-dev \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--preload", "-w", "4", "-b", "0.0.0.0:5000", "--timeout", "120", "app:app", "--log-level=debug"]