Update APP_ENTRYPOINT in Dockerfile to new path

Changed the APP_ENTRYPOINT environment variable to reflect the updated directory structure. This ensures the application points to the correct script path during execution.
This commit is contained in:
ThomasTaroni 2025-05-31 20:28:10 +02:00
parent dc93de9b18
commit a593cdcae8

View file

@ -5,7 +5,7 @@ FROM python:3.13-slim
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Use an environment variable to define the script path
ENV APP_ENTRYPOINT "/app/mcp/gpt_researcher/server.py"
ENV APP_ENTRYPOINT "/app/phoenix_technologies/gpt_researcher/server.py"
# Set working directory within the container