From 2ab54b15dd5b5a5beb993815eb7f206f71111b6f Mon Sep 17 00:00:00 2001 From: Zeke Abshire Date: Fri, 22 May 2026 22:10:17 -0500 Subject: [PATCH] Changed internal port to 80 --- deploy/action.yml | 2 +- deploy/deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/action.yml b/deploy/action.yml index 45d1a00..8347471 100644 --- a/deploy/action.yml +++ b/deploy/action.yml @@ -10,7 +10,7 @@ inputs: description: Branch name; the repo's default branch deploys as production, everything else as a preview internal-port: required: false - default: "3000" + default: "80" description: Port the app listens on inside the container build-args: required: false diff --git a/deploy/deploy.sh b/deploy/deploy.sh index bd26c74..7473350 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -4,7 +4,7 @@ set -euo pipefail APP_NAME="" TAG="" PORT="" -INTERNAL_PORT="3000" +INTERNAL_PORT="80" ENV="" ENV_OVERRIDE=""