ahmedheikal/AppliedMachineLearningProject
0
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 