If you run docker compose up --build, and go to http://localhost:3000, you will see an internal server error (500).
If you run docker run --rm -p 3000:3000 eden-svelte-reproducer-ct, it will work okay.
If you modify the Dockerfile to add COPY --from=builder /app/node_modules/@elysiajs /app/node_modules/@elysiajs in the runner image, and run the compose file, it will work okay.
With the modified image, docker run works as well.