From 09ffa2877831b956048f2bf4f8e5e16f73492f73 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sat, 26 Oct 2024 22:02:21 -0400 Subject: [PATCH] Update the app port to 5000 like dokku assumes it will --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 60006a5..0149456 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY ./chat-app . ENV NODE_ENV=production ENV APP_URL=chat.freedoom.party -ENV APP_PORT=3000 +ENV APP_PORT=5000 RUN bun run build USER bun