-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
213 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM eclipse-temurin:21-jdk | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
ARG NODE_MAJOR=18 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN printf 'Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 1001' > /etc/apt/preferences.d/nodesource \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
gpg \ | ||
gpg-agent \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | ||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
yarn \ | ||
&& apt-get upgrade -qq \ | ||
&& rm -rf /var/lib/apt/lists/* |
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,12 @@ | ||
FROM eclipse-temurin:21-jdk-alpine | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN apk -U upgrade \ | ||
&& apk add --no-cache \ | ||
"nodejs<20" \ | ||
npm \ | ||
yarn \ | ||
curl |
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,25 @@ | ||
FROM eclipse-temurin:21-jdk | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
ARG NODE_MAJOR=20 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN printf 'Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 1001' > /etc/apt/preferences.d/nodesource \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
gpg \ | ||
gpg-agent \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | ||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
yarn \ | ||
&& apt-get upgrade -qq \ | ||
&& rm -rf /var/lib/apt/lists/* |
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,14 @@ | ||
FROM eclipse-temurin:21-jdk-alpine | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \ | ||
&& echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories \ | ||
&& apk -U upgrade \ | ||
&& apk add --no-cache \ | ||
nodejs@edge \ | ||
npm@edge \ | ||
yarn \ | ||
curl |
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,25 @@ | ||
FROM eclipse-temurin:21-jre | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
ARG NODE_MAJOR=18 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN printf 'Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 1001' > /etc/apt/preferences.d/nodesource \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
gpg \ | ||
gpg-agent \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | ||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
yarn \ | ||
&& apt-get upgrade -qq \ | ||
&& rm -rf /var/lib/apt/lists/* |
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,12 @@ | ||
FROM eclipse-temurin:21-jre-alpine | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN apk -U upgrade \ | ||
&& apk add --no-cache \ | ||
"nodejs<20" \ | ||
npm \ | ||
yarn \ | ||
curl |
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,25 @@ | ||
FROM eclipse-temurin:21-jre | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
ARG NODE_MAJOR=20 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN printf 'Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 1001' > /etc/apt/preferences.d/nodesource \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
gpg \ | ||
gpg-agent \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | ||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
yarn \ | ||
&& apt-get upgrade -qq \ | ||
&& rm -rf /var/lib/apt/lists/* |
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,14 @@ | ||
FROM eclipse-temurin:21-jre-alpine | ||
LABEL maintainer "Tim Brust <[email protected]>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \ | ||
&& echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories \ | ||
&& apk -U upgrade \ | ||
&& apk add --no-cache \ | ||
nodejs@edge \ | ||
npm@edge \ | ||
yarn \ | ||
curl |
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