CoolFace
Apppublic

Lohith125/fraud-detection-ui

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY . /app6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]12