Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.19.2
v20.20.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ WORKDIR /usr/src/flowise
# Copy app source
COPY . .

# Install dependencies and build
# Install dependencies and build (excluding sdk packages not needed for Docker)
RUN pnpm install && \
pnpm build
pnpm build:docker

# Give the node user ownership of the application files
RUN chown -R node:node .
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
],
"scripts": {
"build": "turbo run build",
"build:docker": "turbo run build --filter=!@flowiseai/agentflow --filter=!@flowiseai/observe",
"build-force": "pnpm clean && turbo run build --force",
"dev": "turbo run dev --parallel --no-cache",
"start": "run-script-os",
Expand Down Expand Up @@ -92,7 +93,7 @@
}
},
"engines": {
"node": ">=18.15.0 <19.0.0 || ^20",
"node": "^20",
Comment thread
jocelynlin-wd marked this conversation as resolved.
Comment thread
jocelynlin-wd marked this conversation as resolved.
"pnpm": "^10.26.0"
},
"resolutions": {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"email": "henryheng@flowiseai.com"
},
"engines": {
"node": ">=18.15.0 <19.0.0 || ^20"
"node": "^20"
Comment thread
jocelynlin-wd marked this conversation as resolved.
},
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
Expand Down
Loading