handex's picture
Update Dockerfile
2d9e9b2 verified
Raw
History Blame Contribute Delete
172 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ /app/src/
CMD streamlit run src/streamlit_app.py