| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install --no-cache-dir -r requirements-merged.txt | |
| EXPOSE 8000 | |
| CMD ["python", "-m", "backend.run_demo"] | |
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install --no-cache-dir -r requirements-merged.txt | |
| EXPOSE 8000 | |
| CMD ["python", "-m", "backend.run_demo"] | |