CoolFace
Apppublic

ilofa/DDD

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.9-slim
2
3WORKDIR /app
4
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 .
13RUN pip3 install -r requirements.txt
14
15COPY . .
16
17EXPOSE 8501
18
19HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
20
21ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]