From a593cdcae8f7f4f747c188c70ee00b8a4acfea55 Mon Sep 17 00:00:00 2001 From: ThomasTaroni Date: Sat, 31 May 2025 20:28:10 +0200 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d45dabe..fd7fdfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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