object-detection / Dockerfile
mingyang91's picture
try to create /.cache folder
4ebc768 verified
raw
history blame
149 Bytes
FROM python:3.11-bookworm
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
RUN mkdir /.cache
ENTRYPOINT ["streamlit", "run", "demo.py"]