image-search / Dockerfile
cahya's picture
add the application files
c10a93b
raw history blame
No virus
146 Bytes
FROM python:3.8-slim-buster
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit","run"]
CMD ["app.py"]