File size: 371 Bytes
80dfc88 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# ← pick a Python base image
FROM python:3.10-slim
# ← set working directory
WORKDIR /app
# → copy everything
COPY . /app
# → install deps
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# → expose streamlit default port
EXPOSE 8501
# → final command
CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=8501"]
|