Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Alhdrawi
/
word-to-pdf-vice-versa
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
922cf2f
word-to-pdf-vice-versa
/
Dockerfile
Alhdrawi
Create Dockerfile
922cf2f
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
177 Bytes
FROM
python:3.10-slim
RUN
apt-
get
update && apt-
get
install -y libreoffice
COPY requirements.txt .
RUN
pip install -r requirements.txt
COPY app.py .
CMD [
"python"
,
"app.py"
]