feat: add an option to remove the landing page

This commit is contained in:
Levente Orban
2025-10-10 18:11:18 +02:00
parent 22038f7779
commit 11875b4a1e
2 changed files with 1 additions and 2 deletions

View File

@@ -5,7 +5,6 @@ yarn-error.log*
.git
.gitignore
README.md
.env
.env.*
!.env.example
.nyc_output

View File

@@ -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