fix: added copy kafka lib in docker

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

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

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

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

Loading…
Cancel
Save