GameSetAndMatch commited on
Commit
959100e
·
verified ·
1 Parent(s): 15cd057

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -6,6 +6,13 @@ USER root
6
  # Skip downloading Chrome for Puppeteer (saves build time)
7
  ENV PUPPETEER_SKIP_DOWNLOAD=true
8
 
 
 
 
 
 
 
 
9
  # Install latest Flowise globally (specific version can be set: flowise@1.0.0)
10
  RUN npm install -g flowise
11
 
 
6
  # Skip downloading Chrome for Puppeteer (saves build time)
7
  ENV PUPPETEER_SKIP_DOWNLOAD=true
8
 
9
+
10
+ ARG FLOWISE_PATH=/usr/local/lib/node_modules/flowise
11
+ ARG BASE_PATH=/data/.flowise
12
+ ARG DATABASE_PATH=$BASE_PATH
13
+ ARG SECRETKEY_PATH=$BASE_PATH
14
+ ARG LOG_PATH=$BASE_PATH/logs
15
+ ARG BLOB_STORAGE_PATH=$BASE_PATH/storage
16
  # Install latest Flowise globally (specific version can be set: flowise@1.0.0)
17
  RUN npm install -g flowise
18