Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
answerdotai
/
zotero-fasthtml
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
43191f7
zotero-fasthtml
/
Dockerfile
rbiswasfc
app
43191f7
6 months ago
raw
Copy download link
history
blame
Safe
194 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
./app.py /code/
CMD
[
"python"
,
"app.py"
]