PDFTranslate / Dockerfile
sanbo
update sth. at 2024-11-26 16:17:31
c93f60c
raw
history blame contribute delete
194 Bytes
FROM python:3.12
WORKDIR /app
COPY . .
ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y libgl1
RUN pip install .
# 指定要公开的端口
EXPOSE 7860
CMD ["pdf2zh", "-i"]