From 02774c015e52e178423d66e40c474719ef19a750 Mon Sep 17 00:00:00 2001 From: Artem Darius Weber Date: Sat, 9 Nov 2024 16:06:49 +0300 Subject: [PATCH] fix: added copy kafka lib in docker --- agentic/llm/consumer.Dockerfile | 2 +- agentic/llm/processor.Dockerfile | 2 +- agentic/llm/producer.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agentic/llm/consumer.Dockerfile b/agentic/llm/consumer.Dockerfile index 2a77974..c0e333c 100644 --- a/agentic/llm/consumer.Dockerfile +++ b/agentic/llm/consumer.Dockerfile @@ -3,6 +3,6 @@ FROM python:3.9 WORKDIR /app COPY test_show_responses_from_llm.py . COPY requirements.txt . -COPY AgenticInterfaces /app/AgenticInterfaces +COPY 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 648382f..1030120 100644 --- a/agentic/llm/processor.Dockerfile +++ b/agentic/llm/processor.Dockerfile @@ -3,6 +3,6 @@ FROM python:3.9 WORKDIR /app COPY llm_worker.py . COPY requirements.txt . -COPY AgenticInterfaces /app/AgenticInterfaces +COPY 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 596357e..15b4953 100644 --- a/agentic/llm/producer.Dockerfile +++ b/agentic/llm/producer.Dockerfile @@ -3,6 +3,6 @@ FROM python:3.9 WORKDIR /app COPY test_send_llm_requests.py . COPY requirements.txt . -COPY AgenticInterfaces /app/AgenticInterfaces +COPY AgenticInterfaces . RUN pip install -r requirements.txt CMD ["python", "test_send_llm_requests.py"]