Spaces:
Running
Running
File size: 884 Bytes
7b57ad9 9f69682 7b57ad9 9f69682 1518277 67fe4c5 1518277 80a023e cdd5657 80a023e 25da37f 80a023e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
FROM python:3.12
WORKDIR /app
ENV PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y libgl1 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install pdf2zh
RUN mkdir -p /data
RUN chmod 777 /data
RUN mkdir -p /app
RUN chmod 777 /app
RUN mkdir -p /.cache
RUN chmod 777 /.cache
RUN mkdir -p ./gradio_files
RUN chmod 777 ./gradio_files
RUN mkdir -p /.config
RUN chmod 777 /.config
RUN mkdir -p /.config/PDFMathTranslate
RUN chmod 777 /.config/PDFMathTranslate
# write several lines to the file /.config/PDFMathTranslate/config.json
RUN echo '{ "USE_MODELSCOPE": "0", "PDF2ZH_LANG_FROM": "English", "PDF2ZH_LANG_TO": "Simplified Chinese", "NOTO_FONT_PATH": "/app/SourceHanSerifCN-Regular.ttf", "translators":[]}' > /.config/PDFMathTranslate/config.json
RUN chmod 777 /.config/PDFMathTranslate/config.json
CMD ["pdf2zh", "-i", "--config", "/.config/PDFMathTranslate/config.json"] |