Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
noahabebe
/
baymx
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
baymx
/
Dockerfile
Noahabebe
baymx
a4f61a3
11 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
207 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
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
"main:app"
]