Hugo014/TotalSalesPredictionFrontend
0
1FROM python:3.11.132 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]10 