Description
What version of Tailwind CSS are you using?
v^4.1.0
What build tool (or framework if it abstracts the build tool) are you using?
Docker
What version of Node.js are you using?
v22.15.0
What browser are you using?
N/A
What operating system are you using?
darwin/arm64 and linux/arm64
Reproduction URL
https://github.com/ghmeier/tailwind-repro
The docker build hangs indefinitely when running:
docker build .
Describe your issue
When running any tailwind while building docker containers for any architecture (the issue is reproducible when running docker buildx build --platform linux/amd64
) any command that utilizes tailwind cli hangs. The repro case provided above is a minimal example where just running npx @tailwindcss/cli -v
hangs indefinitely, but this also happens when building css using the cli directly or via webpack. Running the same command on my M1 Macbook pro resolves correctly.
Including DEBUG=1
does not resolve the issue, the command doesn't output anything.
The repro cases uses node:22.15.0-alpine3.20
but I've yet to find a base image that solves the issue.
I've looked through the couple of other issues and this looks most similar to #15730, but not quite the same.