CV_Process / Dockerfile
bsiddhharth
updated the version in Docker file to 3.10-slim-buster
c8e771e
raw
history blame contribute delete
343 Bytes
FROM python:3.10-slim-buster
EXPOSE 8501
RUN apt-get update && apt-get install -y \
build-essential \
software-properties-common \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]