PDFTranslate / Dockerfile
sanbo
update sth. at 2024-11-26 16:15:47
9b0f4a0
raw
history blame
154 Bytes
FROM python:3.12
WORKDIR /app
COPY . .
ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y libgl1
RUN pip install .
CMD ["pdf2zh", "-i"]