Tadashi commited on
Commit
6dd314c
1 Parent(s): 699e53a

fix: update base image from main

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. flowsettings.py +1 -1
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  # syntax=docker/dockerfile:1.0.0-experimental
2
- FROM ghcr.io/cinnamon/kotaemon:feat-first_setup-full as base_image
3
 
4
  RUN useradd -m -u 1000 user
5
  RUN --mount=type=ssh chown -R user:user /app
 
1
  # syntax=docker/dockerfile:1.0.0-experimental
2
+ FROM ghcr.io/cinnamon/kotaemon:main-full as base_image
3
 
4
  RUN useradd -m -u 1000 user
5
  RUN --mount=type=ssh chown -R user:user /app
flowsettings.py CHANGED
@@ -25,7 +25,7 @@ if not KH_APP_VERSION:
25
  KH_APP_VERSION = "local"
26
 
27
  KH_ENABLE_FIRST_SETUP = True
28
- KH_DEMO_MODE = config("KH_DEMO_MODE", default=False)
29
 
30
  # App can be ran from anywhere and it's not trivial to decide where to store app data.
31
  # So let's use the same directory as the flowsetting.py file.
 
25
  KH_APP_VERSION = "local"
26
 
27
  KH_ENABLE_FIRST_SETUP = True
28
+ KH_DEMO_MODE = config("KH_DEMO_MODE", default=False, cast=bool)
29
 
30
  # App can be ran from anywhere and it's not trivial to decide where to store app data.
31
  # So let's use the same directory as the flowsetting.py file.