File size: 164 Bytes
bb85593 |
1 2 3 4 5 6 7 |
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"]
|
bb85593 |
1 2 3 4 5 6 7 |
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"]
|