PredictiveMLGenAI / Dockerfile
IvanStudent's picture
Upload Dockerfile
8067adc verified
raw
history blame
436 Bytes
��FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]