fix: added copy kafka lib in docker

main
Artem-Darius Weber 2 months ago
parent 02774c015e
commit 732c4fb7f7

@ -3,6 +3,7 @@ FROM python:3.9
WORKDIR /app
COPY test_show_responses_from_llm.py .
COPY requirements.txt .
COPY AgenticInterfaces .
COPY AgenticInterfaces ./AgenticInterfaces
RUN pip install -r requirements.txt
ENV PYTHONPATH=/app
CMD ["python", "test_show_responses_from_llm.py"]

@ -1,8 +1,8 @@
# processor.Dockerfile
FROM python:3.9
WORKDIR /app
COPY llm_worker.py .
COPY requirements.txt .
COPY AgenticInterfaces .
COPY AgenticInterfaces ./AgenticInterfaces
RUN pip install -r requirements.txt
ENV PYTHONPATH=/app
CMD ["python", "llm_worker.py"]

@ -3,6 +3,7 @@ FROM python:3.9
WORKDIR /app
COPY test_send_llm_requests.py .
COPY requirements.txt .
COPY AgenticInterfaces .
COPY AgenticInterfaces ./AgenticInterfaces
RUN pip install -r requirements.txt
ENV PYTHONPATH=/app
CMD ["python", "test_send_llm_requests.py"]

Loading…
Cancel
Save