From 002e33411f0905e849830194bdad87b253dc7d47 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sat, 26 Oct 2024 21:47:17 -0400 Subject: [PATCH] Fix the dockerfile app --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 39dd7c7..51a1650 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ COPY --from=install /temp/build/node_modules node_modules COPY ./chat-app . ENV NODE_ENV=production +ENV APP_URL=chat.freedoom.party +ENV APP_PORT=5000 RUN bun run build USER bun