Merge branch #FlowiseAI/Flowise' into 'Germinal/Flowise'
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -3,11 +3,11 @@ USER root
|
|
3 |
|
4 |
# Arguments that can be passed at build time
|
5 |
ARG FLOWISE_PATH=/usr/local/lib/node_modules/flowise
|
6 |
-
ARG BASE_PATH=/
|
7 |
ARG DATABASE_PATH=$BASE_PATH
|
8 |
-
ARG APIKEY_PATH=$BASE_PATH
|
9 |
ARG SECRETKEY_PATH=$BASE_PATH
|
10 |
ARG LOG_PATH=$BASE_PATH/logs
|
|
|
11 |
|
12 |
# Install dependencies
|
13 |
RUN apk add --no-cache git python3 py3-pip make g++ build-base cairo-dev pango-dev chromium
|
@@ -19,7 +19,7 @@ ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
|
|
19 |
RUN npm install -g flowise
|
20 |
|
21 |
# Configure Flowise directories using the ARG
|
22 |
-
RUN mkdir -p $LOG_PATH $FLOWISE_PATH/uploads && chmod -R 777 $LOG_PATH $FLOWISE_PATH
|
23 |
|
24 |
WORKDIR /data
|
25 |
|
|
|
3 |
|
4 |
# Arguments that can be passed at build time
|
5 |
ARG FLOWISE_PATH=/usr/local/lib/node_modules/flowise
|
6 |
+
ARG BASE_PATH=/data/.flowise
|
7 |
ARG DATABASE_PATH=$BASE_PATH
|
|
|
8 |
ARG SECRETKEY_PATH=$BASE_PATH
|
9 |
ARG LOG_PATH=$BASE_PATH/logs
|
10 |
+
ARG BLOB_STORAGE_PATH=$BASE_PATH/storage
|
11 |
|
12 |
# Install dependencies
|
13 |
RUN apk add --no-cache git python3 py3-pip make g++ build-base cairo-dev pango-dev chromium
|
|
|
19 |
RUN npm install -g flowise
|
20 |
|
21 |
# Configure Flowise directories using the ARG
|
22 |
+
RUN mkdir -p $BASE_PATH $LOG_PATH $FLOWISE_PATH/uploads && chmod -R 777 $LOG_PATH $FLOWISE_PATH $BASE_PATH
|
23 |
|
24 |
WORKDIR /data
|
25 |
|