Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
reycn
/
PDFMathTranslate-Docker
like
98
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7b57ad9
PDFMathTranslate-Docker
/
Dockerfile
reycn
Create Dockerfile
7b57ad9
verified
6 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
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
CMD
[
"pdf2zh"
,
"-i"
]