-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt stop using custom docker build image
- Loading branch information
1 parent
9730d83
commit eac3d4f
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
[target.aarch64-unknown-linux-gnu] | ||
dockerfile = "dockerfiles/Dockerfile.builder_linux_aarch64" | ||
#dockerfile = "dockerfiles/Dockerfile.builder_linux_aarch64" | ||
pre-build = [ | ||
"dpkg --add-architecture $CROSS_DEB_ARCH", | ||
#"dpkg --add-architecture $CROSS_DEB_ARCH", | ||
"curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh", | ||
"bash -E nodesource_setup.sh", | ||
"apt-get install --assume-yes --no-install-recommends nodejs", | ||
"mkdir -p /.npm", | ||
"chown -R 1001:128 /.npm" | ||
"chown -R 1001:128 /.npm", | ||
] | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
dockerfile = "dockerfiles/Dockerfile.builder_linux_x86" | ||
#dockerfile = "dockerfiles/Dockerfile.builder_linux_x86" | ||
pre-build = [ | ||
#"dpkg --add-architecture $CROSS_DEB_ARCH", | ||
"curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh", | ||
"bash -E nodesource_setup.sh", | ||
"apt-get install --assume-yes --no-install-recommends nodejs", | ||
"mkdir -p /.npm", | ||
"chown -R 1001:128 /.npm" | ||
"chown -R 1001:128 /.npm", | ||
] |