mishig HF Staff commited on
Commit
af0a419
·
1 Parent(s): 183db9b

chore: enable embedded MongoDB by default for HF Spaces

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  # syntax=docker/dockerfile:1
2
- ARG INCLUDE_DB=false
3
 
4
  FROM node:24-slim AS base
5
 
@@ -76,7 +76,7 @@ USER user
76
  FROM local_db_${INCLUDE_DB} AS final
77
 
78
  # build arg to determine if the database should be included
79
- ARG INCLUDE_DB=false
80
  ENV INCLUDE_DB=${INCLUDE_DB}
81
 
82
  # svelte requires APP_BASE at build time so it must be passed as a build arg
 
1
  # syntax=docker/dockerfile:1
2
+ ARG INCLUDE_DB=true
3
 
4
  FROM node:24-slim AS base
5
 
 
76
  FROM local_db_${INCLUDE_DB} AS final
77
 
78
  # build arg to determine if the database should be included
79
+ ARG INCLUDE_DB=true
80
  ENV INCLUDE_DB=${INCLUDE_DB}
81
 
82
  # svelte requires APP_BASE at build time so it must be passed as a build arg