AI_Chatbot / Dockerfile
LejobuildYT's picture
Upload 18 files
70b7b2b verified
# --- STAGE: Backend ---
FROM python:3.10-slim
WORKDIR /app
# Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Backend
COPY app_simple.py ./app.py
COPY frontend.html .
COPY plugins ./plugins/
EXPOSE 7860
# Start Backend
CMD ["python", "app.py"]