Spaces:
Sleeping
Sleeping
| # --- 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"] | |