zikaYOLOv8 / Dockerfile
fcernafukuzaki's picture
Create Dockerfile
507b8e0 verified
raw
history blame
382 Bytes
FROM python:3.9
WORKDIR /content
# Instala wget
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/SkalskiP/yolov9.git
WORKDIR /content/yolov9
RUN pip install -r requirements.txt -q
WORKDIR /content
ENTRYPOINT ["python", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableCORS=false", "--server.enableXsrfProtection=false"]