rameshmoorthy's picture
Update Dockerfile
a1ff557 verified
raw
history blame contribute delete
488 Bytes
FROM python:3.13-slim
WORKDIR /app
RUN apt-get update && apt-get install -y build-essential curl git \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip3 install -r requirements.txt
COPY . .
EXPOSE 7860
ENV STREAMLIT_SERVER_PORT=7860
ENV STREAMLIT_SERVER_ADDRESS=0.0.0.0
CMD ["streamlit", "run", "app.py", \
"--server.fileWatcherType=none", "--server.port=7860", "--server.address=0.0.0.0", \
"--server.headless=true", "--browser.gatherUsageStats=false"]