File size: 225 Bytes
c52b1e1
 
 
 
433bc03
c52b1e1
 
de34afd
433bc03
c52b1e1
 
1
2
3
4
5
6
7
8
9
10
11
FROM ultralytics/ultralytics:latest

WORKDIR /usr/src/ultralytics/

COPY ./requirements.txt .

RUN python3 -m pip install -r requirements.txt

COPY ./app.py .

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]