CoolFace
Apppublic

Yves-Tana/CC_Transfer_Learning

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.102 3 4COPY requirements.txt .5RUN pip install -r requirements.txt6 7COPY . /app8WORKDIR /app9 10EXPOSE 786011 12CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]