causal-stream / Dockerfile
skyruh's picture
fix: full compliance with multi-mode deployment requirements
c1de02f
Raw
History Blame Contribute Delete
108 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir .
EXPOSE 7860
CMD ["server"]