Skip to content

fix(docker): pin flowise version in Docker image to match release tag - #6670

Open
iruzen-dono wants to merge 1 commit into
FlowiseAI:mainfrom
iruzen-dono:fix/docker-version-pin
Open

fix(docker): pin flowise version in Docker image to match release tag#6670
iruzen-dono wants to merge 1 commit into
FlowiseAI:mainfrom
iruzen-dono:fix/docker-version-pin

Conversation

@iruzen-dono

Copy link
Copy Markdown

Description

The docker/Dockerfile used npm install -g flowise which installs whatever is latest on npm, causing version mismatch between the Docker image tag and the installed CLI version inside the container (e.g. image tagged 3.1.3 running CLI 3.1.2).

Changes

  • Added FLOWISE_VERSION build arg (defaulting to current release 3.1.3)
  • Changed to npm install -g flowise@${FLOWISE_VERSION}
  • Maintainers just need to update the default FLOWISE_VERSION on each release

Related Issue

Closes #6623

The docker/Dockerfile used 'npm install -g flowise' which installs
whatever is latest on npm, causing version mismatch between the Docker
image tag and the installed CLI version (e.g. image tagged 3.1.3
containing CLI 3.1.2).

This adds a FLOWISE_VERSION build arg (defaulting to current release)
so the installed version always matches the release tag.

Fixes FlowiseAI#6623
Copilot AI review requested due to automatic review settings July 26, 2026 10:53
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Caution

The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Docker image flowiseai/flowise:3.1.3 contains Flowise CLI version 3.1.2

2 participants