CodeIcarus/image-captioning-segmentation
0
1FROM python:3.9-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6 build-essential \7 curl \8 software-properties-common \9 git \10 && rm -rf /var/lib/apt/lists/*11 12COPY requirements.txt ./13COPY app.py ./14 15RUN pip install --no-cache-dir -r requirements.txt16 17EXPOSE 786118 19CMD streamlit run app.py --server.port=7860 --server.address=0.0.0.020 