CoolFace
Apppublic

Baolina/Support_Ticket_Categorization

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1 2FROM python:3.9-slim3 4WORKDIR /app5 6RUN apt-get update && apt-get install -y \7    build-essential \8    curl \9    software-properties-common \10    git \11    && rm -rf /var/lib/apt/lists/*12 13COPY requirements.txt ./14COPY app.py ./15COPY src/ ./src/16 17RUN pip3 install -r requirements.txt18 19EXPOSE 850120 21HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health22 23ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]24