Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yuntian-deng/neural-os
yuntian-group
/
neural-os
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c575e18
neural-os
/
Dockerfile
osanseviero
Full app
c575e18
over 2 years ago
raw
Copy download link
history
blame
Safe
224 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
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]