CoolFace
Apppublic

Sadmanul/Collaborative-Filtering-Recommender-System

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1# base image2FROM python:3.9-slim3 4# workdir5WORKDIR /app6 7# copy8COPY . /app9 10# run11RUN pip install -r requirements.txt12 13# port14EXPOSE 500015 16# command17CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true"]