@@ -24,8 +24,8 @@ RUN export POETRY_VERSION="2.1.1" && \
2424ENV POETRY_HOME="/opt/poetry"
2525ENV PATH="/opt/poetry/bin:$PATH"
2626
27- ARG JUST_SEMANTIC_SEARCH_VERSION=0.3.7
28- ARG JUST_AGENTS_WEB_VERSION =0.7.4
27+ ARG JUST_SEMANTIC_SEARCH_VERSION=0.4.2
28+ ARG JUST_AGENTS_VERSION =0.7.4
2929
3030# Create necessary directories
3131RUN export CONTAINER_DIRS="/app /app/models.d /app/agent_tools /app/scripts /app/data /app/meili /app/logs /app/tmp /app/env" && \
@@ -45,7 +45,7 @@ COPY ./README.md /app/README.md
4545# && poetry add --no-cache --verbose --source pytorch_cpu torch>=2.6
4646RUN poetry config virtualenvs.create false && \
4747 poetry install --no-interaction --no-cache
48- RUN poetry add --no-cache --verbose just-agents>=$JUST_AGENTS_WEB_VERSION just-semantic-search-server>=$JUST_SEMANTIC_SEARCH_VERSION && \
48+ RUN poetry add --no-cache --verbose " just-agents>=$JUST_AGENTS_VERSION" " just-agents-core>=$JUST_AGENTS_VERSION" "just- semantic-search-server>=$JUST_SEMANTIC_SEARCH_VERSION" && \
4949 poetry install --no-interaction --no-cache --compile && \
5050 poetry show --tree
5151
@@ -105,5 +105,4 @@ ENV JSON_FILE_PATTERN="[0123456789][0123456789]_*.json"
105105# Keep running as root - let entrypoint handle user switching
106106ENTRYPOINT ["/usr/local/bin/entrypoint.sh" ]
107107# CMD ["python", "-m", "just_agents.web.run_agent", "run-chat-ui-server-command"]
108- CMD python -m just_semantic_search.server.run_rag_server --workers $AGENT_WORKERS --host $APP_HOST --port $APP_PORT
109-
108+ CMD ["python" , "-m" , "just_semantic_search.server.run_rag_server" , "--workers" , "$AGENT_WORKERS" , "--host" , "$APP_HOST" , "--port" , "$APP_PORT" ]
0 commit comments