File size: 500 Bytes
d169c52 7d08957 8ca5817 d169c52 7d08957 8ca5817 d169c52 7d08957 d169c52 8ca5817 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
&& rm -rf /var/lib/apt/lists/*
# Install deps
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app
COPY . .
# 🔧 Ensure Chainlit can write to its working dirs
RUN mkdir -p /app/.files /app/.chainlit && chmod -R 777 /app
# Spaces injects PORT
ENV PORT=7860
EXPOSE 7860
CMD ["bash", "-lc", "chainlit run app.py --host=0.0.0.0 --port $PORT"]
|