This commit is contained in:
Adil Hafeez 2024-10-28 23:22:48 -07:00
parent 676617b41b
commit 13429e4465
5 changed files with 181 additions and 7 deletions

View file

@ -8,13 +8,11 @@ COPY requirements.txt /src/
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
COPY . /src
FROM python:3.10-slim AS output
COPY --from=builder /runtime /usr/local
COPY /app /app
WORKDIR /app
COPY /run_stream.py .
CMD ["python", "run.py"]
CMD ["python", "run_stream.py"]