From 85c537a1de1e2d153600a23399931d4386f2f2ef Mon Sep 17 00:00:00 2001 From: Debanjum Date: Mon, 13 Jan 2025 20:25:40 +0700 Subject: [PATCH] Set default PORT arg in Dockerfile to default Khoj port, 42110 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fab572cc..f7f67e9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,6 +58,6 @@ RUN cd src && python3 khoj/manage.py collectstatic --noinput # Run the Application # There are more arguments required for the application to run, # but those should be passed in through the docker-compose.yml file. -ARG PORT +ARG PORT=42110 EXPOSE ${PORT} ENTRYPOINT ["python3", "src/khoj/main.py"]