Files

25 lines
527 B
Docker
Raw Permalink Normal View History

2026-04-15 09:27:29 +12:00
FROM python:3.11-slim
2026-04-15 21:25:03 +12:00
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1
2026-04-15 09:27:29 +12:00
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
fonts-dejavu-core \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/*
2026-04-15 21:25:03 +12:00
COPY requirements.txt ./
RUN python -m pip install --upgrade pip \
&& python -m pip install -r requirements.txt
2026-04-15 09:27:29 +12:00
COPY . .
2026-04-15 21:25:03 +12:00
RUN mkdir -p /app/cache /app/output
2026-04-15 09:27:29 +12:00
EXPOSE 8500
2026-04-15 21:25:03 +12:00
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8500"]