CoolFace
Apppublic

ahmedheikal/AppliedMachineLearningProject

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile8 linesDownload Raw Back to root
1FROM python:3.102WORKDIR /app3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6EXPOSE 78607CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]8