SuperKart / Dockerfile
ABCABCABC999's picture
Deploy Streamlit frontend with model and CSV
a1ad98a verified
raw
history blame contribute delete
230 Bytes
# Dockerfile for SuperKart Streamlit Frontend
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]