File size: 358 Bytes
f24c119
 
 
 
 
 
 
 
 
 
 
 
 
ab2f17f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]