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"]