Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
buyun
/
dummy-chat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
03e7c39
dummy-chat
/
Dockerfile
buyun
Create Dockerfile
03e7c39
verified
5 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
FROM
python:
3.10
RUN
useradd -m -u 1000 user
WORKDIR
/app
RUN
pip install --no-cache-dir --upgrade gradio
COPY
--
chown
=user . /app
CMD
[
"python3"
,
"app.py"
]