-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently running into an issue installing dependencies with `npm` from the Debian Arm64 image. See if installing the latest version of `npm` addresses the issue.
- Loading branch information
Showing
2 changed files
with
3 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -24,7 +24,8 @@ RUN apt-get update -y && \ | |
apt-get install -y \ | ||
curl \ | ||
git \ | ||
ca-certificates | ||
ca-certificates && \ | ||
npm install -g [email protected] | ||
|
||
# Uses the workdir, copies from pulumi interim container | ||
COPY --from=builder /root/.pulumi/bin/pulumi /pulumi/bin/pulumi | ||
|
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 |
---|---|---|
|
@@ -25,6 +25,7 @@ RUN microdnf install -y \ | |
tar \ | ||
nodejs \ | ||
ca-certificates && \ | ||
npm install -g [email protected] && \ | ||
npm install -g yarn | ||
|
||
# Uses the workdir, copies from pulumi interim container | ||
|