-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ARM support for nodejs buildpacks #995
Comments
i`m using below command to run pack build :
it will get below error: using : Docker version 27.4.1 |
@DZ0011111 This is caused by buildpacks/pack#2315 -
But since this issue is already fixed on @mhdawson fyi - in case you face similar issues |
I dont think building an arm image is supported yet by nodejs buildpack. You are also using the bionic builder which is deprecated, you can use jammy instead. Also you only need the builder as nodejs is already included in the builder.
|
I don't think this is about @DZ0011111 Could you verify if the workaround works for you? |
Hi @c0d1ngm0nk3y @pacostas yeah, i`m using:
now it works fine for me, thanks for your reply ENV: |
I see, I thought the default export image would be an arm one, once he uses |
Hi @pacostas it works after remove for java: for nodejs: thank you all for your help😊 |
Describe the Enhancement
Currently, the
nodejs
buildpack does not support building onarm
. Thejava
buildpack does, so the tools buildpacks used by both (e.g. ca-certificates) should be already prepared.This is meant to be a checklist of things to adress in order to support
arm
with anodejs
buildpack.Possible Solution
packit
supports architecture when downloading dependencies : Support architecture for dependencies packit#618 (Enable architecture specific dependencies packit#622)node-engine
arm
version of buildpackarm
dependenciesyarn
arm
version of buildpackarm
dependenciesyarn-install
arm
version of buildpacknpm-install
arm
version of buildpackyarn-start
arm
version of buildpacknpm-start
arm
version of buildpacknode-start
arm
version of buildpacknodejs
metabuildpack onarm
Motivation
Support
arm
.The text was updated successfully, but these errors were encountered: