object-detection / Dockerfile
mingyang91's picture
init commit
f977726 verified
raw
history blame
126 Bytes
FROM python:bookworm
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "demo.py"]