CoolFace
Apppublic

jaothan/DockerGenAI_Streamlit

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.Dockerfile22 linesDownload Raw Back to root
1FROM langchain/langchain2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    curl \8    software-properties-common \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12 13RUN pip install --upgrade -r requirements.txt14 15COPY api.py .16COPY utils.py .17COPY chains.py .18 19HEALTHCHECK CMD curl --fail http://localhost:850420 21ENTRYPOINT [ "uvicorn", "api:app", "--host", "0.0.0.0", "--port", "8504" ]22