Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
eaedk
/
agri-tech-fastapi
like
1
Running
App
Files
Files
Community
c6188fc
agri-tech-fastapi
/
Dockerfile
eaedk
cleaned
5d006f4
over 1 year ago
raw
Copy download link
history
blame
Safe
193 Bytes
FROM
python:
3.9
#-slim
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
EXPOSE
7860
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]