File size: 463 Bytes
9493cef bbe22e6 4f5630a bbe22e6 40c0887 |
1 2 3 4 5 6 7 8 9 10 |
FROM python:3.9.16-buster
EXPOSE 8501
WORKDIR /code
COPY requirements.txt requirements.txt
RUN python3 -m pip install --upgrade pip setuptools wheel
RUN python3 -m pip install -r requirements.txt
COPY . .
RUN bash setup_docker.sh
CMD ["streamlit", "run", "src/app.py"]
|