fix: added copy kafka lib in docker

main
Artem-Darius Weber 2 months ago
parent bd75716560
commit f59fb83915

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

@ -3,5 +3,6 @@ FROM python:3.9
WORKDIR /app WORKDIR /app
COPY llm_worker.py . COPY llm_worker.py .
COPY requirements.txt . COPY requirements.txt .
COPY AgenticInterfaces /app/AgenticInterfaces
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
CMD ["python", "llm_worker.py"] CMD ["python", "llm_worker.py"]

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

Loading…
Cancel
Save