Skip to content
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

multi arch docs #1220

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/pages/docs/guides/configuring-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,9 @@ dependsOn = ["...", "lint"]
cmds = ["yarn run test"]
dependsOn = ["build"]
```

## Multiple Architectures

Nixpacks does not support multiple architectures in a single build.

If you need to build for multiple architectures, you will need to create a separate build for each architecture and then generate your own multi-architecture build using `docker manifest`. There's a [GitHub action which does this](https://github.com/iloveitaly/github-action-nixpacks) and is a great example to pattern off if you need a multi-architecture build.
Loading