CoolFace
Apppublic

vazish/query_norm

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.13.5-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    curl \8    && rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt ./11RUN pip3 install -r requirements.txt12 13COPY app.py benchmark.py results.csv dataset.csv ./14 15EXPOSE 850116 17HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health18 19ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]