Spaces:
Running
Running
File size: 226 Bytes
1122ed1 00ee051 9a1ca6e 1122ed1 00ee051 1122ed1 00ee051 216dc44 1122ed1 00ee051 e9158a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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"]
|