Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24@sha256:b2b2184ba9b78c022e1d6a7924ec6fba577adf28f15c9d9c457730cc4ad3807a AS ui-builder
FROM node:26@sha256:e3ffe0cbaeebdcddbfe1ee7bca9b564a92863a8386d5b99a3d72677b3667b61d AS ui-builder

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Install Yarn before using Node 26

With the base image moved to node:26, this stage no longer has Yarn v1 on PATH: the official nodejs/docker-node README documents that Yarn v1 is bundled only for Node.js 25 and below and is not bundled as of Node.js 26. The next RUN invokes make install build, and quickwit/quickwit-ui/Makefile runs yarn install/yarn build, so Docker image builds now fail in the UI stage with yarn: not found unless Yarn is explicitly installed or Corepack/npm is used.

Useful? React with 👍 / 👎.


COPY quickwit/quickwit-ui /quickwit/quickwit-ui

Expand Down
Loading