Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
testdeep123
/
cronjob
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b3566cd
cronjob
/
Dockerfile
testdeep123
Update Dockerfile
29c7d72
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
126 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
app.py .
RUN
pip install flask huggingface_hub gdown humanize
CMD
[
"python"
,
"app.py"
]