Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
raajarajan
/
a
like
0
Runtime error
App
Files
Files
Community
8efb100
a
/
Dockerfile
raajarajan
Create Dockerfile
8efb100
almost 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"
]