demo / Dockerfile
Wajahat698's picture
Update Dockerfile
216dc44 verified
raw
history blame
225 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 ["chainlit", "run", "app.py"]