We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfa502 commit c23cdc2Copy full SHA for c23cdc2
2 files changed
Dockerfile
@@ -32,7 +32,7 @@ COPY . .
32
33
# Install dependencies and build (excluding sdk packages not needed for Docker)
34
RUN pnpm install && \
35
- pnpm build -- --filter='!@flowiseai/agentflow' --filter='!@flowiseai/observe'
+ pnpm build:docker
36
37
# Give the node user ownership of the application files
38
RUN chown -R node:node .
package.json
@@ -12,6 +12,7 @@
12
],
13
"scripts": {
14
"build": "turbo run build",
15
+ "build:docker": "turbo run build --filter=!@flowiseai/agentflow --filter=!@flowiseai/observe",
16
"build-force": "pnpm clean && turbo run build --force",
17
"dev": "turbo run dev --parallel --no-cache",
18
"start": "run-script-os",
0 commit comments