From 11875b4a1e56bae3bd668357f998a74f50131f48 Mon Sep 17 00:00:00 2001 From: Levente Orban Date: Fri, 10 Oct 2025 18:11:18 +0200 Subject: [PATCH] feat: add an option to remove the landing page --- .dockerignore | 1 - Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index a8cbd1c..8c477d6 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,7 +5,6 @@ yarn-error.log* .git .gitignore README.md -.env .env.* !.env.example .nyc_output diff --git a/Dockerfile b/Dockerfile index ca9a0ee..2a90cd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ COPY package*.json . RUN npm ci COPY . . +COPY .env .env EXPOSE 3000 ENV PORT 3000 ENV HOSTNAME "0.0.0.0" -ENV PUBLIC_LANDING_INFO=true RUN npm run build RUN npm prune --production