-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from solarwinds/NH-84378
Use GitHub ARM runners and test on Node 22
- Loading branch information
Showing
17 changed files
with
152 additions
and
91 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
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:22-alpine | ||
|
||
RUN apk add --no-cache \ | ||
curl \ | ||
gcompat \ | ||
git \ | ||
git-lfs \ | ||
libc6-compat \ | ||
tar \ | ||
xz | ||
|
||
RUN corepack enable | ||
|
||
WORKDIR /solarwinds-apm | ||
ENTRYPOINT ["/bin/sh", "-c"] |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM amazonlinux | ||
|
||
RUN dnf install -y \ | ||
curl-minimal \ | ||
git \ | ||
git-lfs \ | ||
tar \ | ||
xz | ||
|
||
RUN curl -fsSL https://rpm.nodesource.com/setup_22.x | bash - && \ | ||
dnf install -y nodejs && \ | ||
dnf clean -y all | ||
|
||
RUN corepack enable | ||
|
||
WORKDIR /solarwinds-apm | ||
ENTRYPOINT ["/bin/bash", "-c"] |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM node:22-slim | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
git \ | ||
git-lfs \ | ||
xz-utils \ | ||
&& apt-get clean | ||
|
||
RUN corepack enable | ||
|
||
WORKDIR /solarwinds-apm | ||
ENTRYPOINT ["/bin/bash", "-c"] |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM registry.access.redhat.com/ubi9 | ||
|
||
RUN dnf install -y \ | ||
curl-minimal \ | ||
git \ | ||
git-lfs \ | ||
tar \ | ||
xz | ||
|
||
RUN dnf module disable -y nodejs && \ | ||
update-crypto-policies --set LEGACY && \ | ||
curl -fsSL https://rpm.nodesource.com/setup_22.x | bash - && \ | ||
dnf install -y nodejs && \ | ||
update-crypto-policies --set DEFAULT && \ | ||
dnf clean -y all | ||
|
||
RUN corepack enable | ||
|
||
WORKDIR /solarwinds-apm | ||
ENTRYPOINT ["/bin/bash", "-c"] |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM ubuntu | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
ca-certificates \ | ||
curl \ | ||
git \ | ||
git-lfs \ | ||
xz-utils | ||
|
||
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \ | ||
apt-get update && \ | ||
apt-get install -y nodejs && \ | ||
apt-get clean | ||
|
||
RUN corepack enable | ||
|
||
WORKDIR /solarwinds-apm | ||
ENTRYPOINT ["/bin/sh", "-c"] |
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