Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
saroj502
/
mywork
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7612cf8
mywork
/
Dockerfile
saroj502
updated
c9a42dd
over 1 year ago
raw
Copy download link
history
blame
Safe
224 Bytes
FROM
python:
3.9
WORKDIR
/mywork
COPY
./Untitled.ipynb /code/Untitled.ipynb
RUN
pip install --no-cache-dir --upgrade -r /code/Untitled.ipynb
COPY
. .
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]