demo / Dockerfile
Wajahat698's picture
Update Dockerfile
e9158a5 verified
raw
history blame contribute delete
226 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
# Hugging Face uses port 7860
ENV CHAINLIT_HOST=0.0.0.0
ENV CHAINLIT_PORT=7860
EXPOSE 7860
CMD ["streamlit", "run", "app.py"]