object-detection / Dockerfile
mingyang91's picture
fix build
2c9ef08 verified
raw
history blame
131 Bytes
FROM python:3.11-bookworm
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "demo.py"]