Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hasshi7965
/
Test
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
7f4c438
Test
/
DockerFile
hashimotoa961
1st commit
7f4c438
over 1 year ago
raw
Copy download link
history
blame
Safe
209 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
COPY
./app.py /code/app.py
RUN
pip install -r requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]