Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
13ze
/
html-to-markdown-cpu
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5e18683
html-to-markdown-cpu
/
Dockerfile
13ze
Create Dockerfile
5e18683
verified
7 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]