Spaces:
Sleeping
Sleeping
File size: 316 Bytes
70b7b2b 6a35292 3d834a1 6a35292 3d834a1 6a35292 70b7b2b 3d834a1 2ef16ed 6a35292 3d834a1 70b7b2b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # --- 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"]
|