Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dinhdat1110
/
simple-ui
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
70766ea
simple-ui
/
Dockerfile
dinhdat1110
Upload folder using huggingface_hub
70766ea
about 1 year ago
raw
Copy download link
history
blame
Safe
179 Bytes
FROM
python:
3.11
WORKDIR
/code
COPY
./requirements.txt /code/
RUN
pip install --no-cache-dir -r requirements.txt
COPY
./app.py /code/
EXPOSE
7860
CMD
[
"gradio"
,
"app.py"
]