CoolFace
Apppublic

B2BEnterprise/Python_library_installer

sourceHugging Faceapache-2.0updated 10mo agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.112 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    curl \8    git \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt ./12COPY src/ ./src/13COPY src/libraries.txt ./14 15RUN pip3 install -r requirements.txt16 17EXPOSE 850118 19HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health20 21ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableCORS=false"]