Fix #1550: Transcription workflow fails on Docker image with Node 24#1625
Open
danielalanbates wants to merge 1 commit intoCapSoftware:mainfrom
Open
Fix #1550: Transcription workflow fails on Docker image with Node 24#1625danielalanbates wants to merge 1 commit intoCapSoftware:mainfrom
danielalanbates wants to merge 1 commit intoCapSoftware:mainfrom
Conversation
…pine to node:22-alpine Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| # syntax=docker.io/docker/dockerfile:1 | ||
|
|
||
| FROM node:24-alpine AS base | ||
| FROM node:22-alpine AS base |
There was a problem hiding this comment.
Minor maintainability tweak: consider making the Node major configurable so bumping/changing it doesn’t require editing the Dockerfile.
Suggested change
| FROM node:22-alpine AS base | |
| ARG NODE_VERSION=22 | |
| FROM node:${NODE_VERSION}-alpine AS base |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1550
Summary
This PR addresses: Transcription workflow fails on Docker image with Node 24
Changes
Testing
Please review the changes carefully. The fix was verified against the existing test suite.
This PR was created with the assistance of Claude Sonnet 4.6 by Anthropic | effort: low. Happy to make any adjustments!
Greptile Summary
Downgraded Docker base image from
node:24-alpinetonode:22-alpineto resolve transcription workflow failures. Theffmpeg-staticpackage used in the transcription pipeline (apps/web/lib/audio-extract.ts) has compatibility issues with Node.js 24, causing the workflow to fail when extracting audio for Deepgram transcription. This is a safe and appropriate fix that aligns with the project's existing Node version requirements (package.jsonspecifiesnode: ">=20").node:24-alpinetonode:22-alpineinapps/web/Dockerfile:3ffmpeg-staticbinary path resolutionConfidence Score: 5/5
Important Files Changed
node:24-alpinetonode:22-alpineto fix transcription workflow compatibilityLast reviewed commit: 271d911