From bcf6088f3a6d8c21a2911de299f37836225a971a Mon Sep 17 00:00:00 2001 From: Kevin Whitaker Date: Sat, 3 Jan 2026 14:26:22 -0500 Subject: [PATCH] use correct port and don't use builtin https --- CloudronManifest.json | 2 +- Dockerfile | 1 + start.sh | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index 21ab42a..2588f1a 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -2,7 +2,7 @@ "title": "Romm", "version": "0.1.0", "healthCheckPath": "/", - "httpPort": 3000, + "httpPort": 5000, "addons": { "localstorage": {}, "postgresql": {}, diff --git a/Dockerfile b/Dockerfile index e1ebe0c..7e54746 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,7 @@ tar xfz $VERSION.tar.gz --strip-components=1 -C /app/code && rm $VERSION.tar.gz # Install nvm ENV NVM_DIR="/app/code/.nvm" +RUN mkdir -p $NVM_DIR RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash \ && . "$NVM_DIR/nvm.sh" \ && nvm install 18.20.8 \ diff --git a/start.sh b/start.sh index 0c22c43..3e85985 100755 --- a/start.sh +++ b/start.sh @@ -28,6 +28,7 @@ export OIDC_REDIRECT_URI="/api/oauth/openid" export OIDC_SERVER_APPLICATION_URL=${CLOUDRON_OIDC_AUTH_ENDPOINT} export ROMM_BASE_PATH=/app/data export UV_PYTHON_INSTALL_DIR=/app/code/uv +export DEV_HTTPS=false echo "==> Starting supervisor" exec /usr/bin/supervisord --configuration /etc/supervisor/supervisord.conf --nodaemon -i Romm