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...
1ab0e5e
cronjob
/
Dockerfile
testdeep123
Update Dockerfile
1ab0e5e
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
117 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
app.py .
RUN
pip install flask huggingface_hub gdown
CMD
[
"python"
,
"app.py"
]