Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yonkasoft
/
chat
like
0
Configuration error
App
Files
Files
Fetching metadata from the HF Docker repository...
681c53e
chat
/
Dockerfile
yonkasoft
Upload 15 files
681c53e
verified
7 months ago
raw
Copy download link
history
blame
Safe
180 Bytes
FROM
python:
3.10
-bullseye
ADD
app.py .
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
app.py .
CMD
[
"python"
,
"./app.py"
]