botInfinity/NEPAL_Constitution_Assistant_AI
0
1# ← pick a Python base image2FROM python:3.10-slim3 4# ← set working directory5WORKDIR /app6 7# → copy everything8COPY . /app9 10# → install deps11RUN pip install --upgrade pip12RUN pip install -r requirements.txt13 14# → expose streamlit default port15EXPOSE 850116 17# → final command18CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=8501"]19 