FROM python:3.12-slim RUN apt-get update && \ apt-get install -y --no-install-recommends curl git && \ rm -rf /var/lib/apt/lists/* RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:${PATH}" WORKDIR /app RUN git clone https://github.com/cappuch/humanizer.git WORKDIR /app/humanizer CMD ["uv", "run", "app.py", "--hf"]