From 5c32ab0ee7d418890532ac7cc0c77d60036c50af Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 11 Feb 2026 21:21:14 +0100 Subject: [PATCH] fix(dockerfile): add explicit port --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 80f90673..f069687f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,6 +79,7 @@ FROM base AS builder ARG APP_VERSION=dev ENV VITE_APP_VERSION=${APP_VERSION} +ENV PORT=4096 WORKDIR /app @@ -94,6 +95,7 @@ FROM base AS production ARG APP_VERSION=dev ENV APP_VERSION=${APP_VERSION} ENV NODE_ENV="production" +ENV PORT=4096 WORKDIR /app