From 242a7d23daa57167c0423a49adba5bc4ebdd4418 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sat, 26 Oct 2024 22:25:34 -0400 Subject: [PATCH] Wrap the app_url in quotes. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f489577..678c1ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY --from=install /temp/build/node_modules node_modules COPY ./chat-app . ENV NODE_ENV=production -ENV APP_URL=chat.freedoom.party +ENV APP_URL="chat.freedoom.party" ENV APP_PORT=5000 RUN bun run build