Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huijio/urltemplate
huijio
/
urlapi2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
urlapi2
/
Dockerfile
huijio
Create Dockerfile
342ddf4
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
147 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]