From f59fb83915ed6829055463f78b73e480e3706de2 Mon Sep 17 00:00:00 2001 From: Artem Darius Weber Date: Sat, 9 Nov 2024 16:04:36 +0300 Subject: [PATCH] fix: added copy kafka lib in docker --- agentic/llm/consumer.Dockerfile | 1 + agentic/llm/processor.Dockerfile | 1 + agentic/llm/producer.Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/agentic/llm/consumer.Dockerfile b/agentic/llm/consumer.Dockerfile index 905ead4..2a77974 100644 --- a/agentic/llm/consumer.Dockerfile +++ b/agentic/llm/consumer.Dockerfile @@ -3,5 +3,6 @@ FROM python:3.9 WORKDIR /app COPY test_show_responses_from_llm.py . COPY requirements.txt . +COPY AgenticInterfaces /app/AgenticInterfaces RUN pip install -r requirements.txt CMD ["python", "test_show_responses_from_llm.py"] diff --git a/agentic/llm/processor.Dockerfile b/agentic/llm/processor.Dockerfile index 174cee8..648382f 100644 --- a/agentic/llm/processor.Dockerfile +++ b/agentic/llm/processor.Dockerfile @@ -3,5 +3,6 @@ FROM python:3.9 WORKDIR /app COPY llm_worker.py . COPY requirements.txt . +COPY AgenticInterfaces /app/AgenticInterfaces RUN pip install -r requirements.txt CMD ["python", "llm_worker.py"] \ No newline at end of file diff --git a/agentic/llm/producer.Dockerfile b/agentic/llm/producer.Dockerfile index d125afe..596357e 100644 --- a/agentic/llm/producer.Dockerfile +++ b/agentic/llm/producer.Dockerfile @@ -3,5 +3,6 @@ FROM python:3.9 WORKDIR /app COPY test_send_llm_requests.py . COPY requirements.txt . +COPY AgenticInterfaces /app/AgenticInterfaces RUN pip install -r requirements.txt CMD ["python", "test_send_llm_requests.py"]