Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ishvalin
/
Babbler
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aca7985
Babbler
/
Dockerfile
Kryko7
FInished
aca7985
over 1 year ago
raw
Copy download link
history
blame
Safe
230 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"unicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]