AutomatedML / Dockerfile
harshnarayan12's picture
Update Dockerfile
e4c5488 verified
raw
history blame
149 Bytes
FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8501
CMD streamlit run app.py --server.port 7850