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