heroku-buildpack-nodejs
heroku-buildpack-nodejs copied to clipboard
Support ARM64 when using Heroku-24 Docker images
Heroku itself currently runs on AMD64 CPUs, however, some users use our buildpacks locally on machines with ARM64 CPUs (such as M1/M2/M3 MacBooks) with the Heroku base images published to Docker Hub.
As such there have been requests to support the ARM64 architecture, e.g.: https://github.com/heroku/base-images/issues/194
Starting with Heroku-24, the base images published to Docker Hub are now multi-architecture (AMD64 + ARM64), and our preview Cloud Native Buildpacks support ARM64 when using Heroku-24.
However, until CNBs leave preview there will still be users using our classic buildpacks with our base images from Docker Hub, so it would be ideal if we could add ARM64 support to our classic buildpacks too. This will not only make the images faster to run locally, but also avoid breaking local development workflows if users update to Heroku-24 and miss the mention in the stack upgrade notes about using --platform linux/amd64
to force the architecture back to AMD64.
For example, the buildpack should support:
-
git clone https://github.com/heroku/node-js-getting-started && cd node-js-getting-started
- Add a
Dockerfile
with the below contents. -
docker build --tag arm-test --platform linux/arm64 .
-
docker run --rm -e PORT=5001 -p 5001:5001 arm-test
-
curl localhost:5001
FROM heroku/heroku:24-build as build
ENV STACK=heroku-24
COPY --chown=heroku . /app
WORKDIR /app
# This is after the COPY line so buildpack updates are picked up.
RUN mkdir -p /tmp/buildpack /tmp/cache /tmp/env \
&& curl https://buildpack-registry.s3.amazonaws.com/buildpacks/heroku/nodejs.tgz \
| tar -xz -C /tmp/buildpack
RUN /tmp/buildpack/bin/compile /app /tmp/cache /tmp/env
FROM heroku/heroku:24
COPY --from=build --chown=heroku /app /app
ENV HOME=/app
WORKDIR /app
CMD ["bash", "-c", "for f in .profile.d/*; do source \"${f}\"; done && npm start"]
Currently when I try the above, I get this error (which is expected, since support for ARM64 hasn't yet been added):
$ docker build --tag arm-test --platform linux/arm64 .
...
> [build 5/5] RUN /tmp/buildpack/bin/compile /app /tmp/cache /tmp/env:
0.283
0.283 -----> Creating runtime environment
0.286
0.287 NPM_CONFIG_LOGLEVEL=error
0.289 NODE_VERBOSE=false
0.289 NODE_ENV=production
0.289 NODE_MODULES_CACHE=true
0.291
0.291 -----> Installing binaries
0.299 engines.node (package.json): 20.x
0.299 engines.npm (package.json): unspecified (use default)
0.299
0.425 Resolving node version 20.x...
0.446 Downloading and installing node 20.13.1...
5.984 /tmp/buildpack/lib/binaries.sh: line 199: 309 Trace/breakpoint trap "$@" > "$TMP_COMMAND_OUTPUT" 2>&1
5.984 rosetta error: failed to open elf at /lib64/ld-linux-x86-64.so.2
6.089
6.089 -----> Build failed
6.155
6.155 We're sorry this build is failing! You can troubleshoot common issues here:
6.155 https://devcenter.heroku.com/articles/troubleshooting-node-deploys
6.155
6.155 If you're stuck, please submit a ticket so we can help:
6.155 https://help.heroku.com/
6.155
6.155 Love,
6.155 Heroku
cc @colincasey