Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
GH2005
/
CodingWk2
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
CodingWk2
/
Dockerfile (1)
GH2005
Update Dockerfile (1)
ba8640b
verified
18 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
125 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir gradio
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]