-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: adds Node.js 16 flavor as new default (#591)
- Loading branch information
Showing
15 changed files
with
203 additions
and
17 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,15 @@ | ||
FROM ruby:2.6 | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -\ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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,11 @@ | ||
FROM ruby:2.6-alpine | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN apk -U upgrade \ | ||
&& apk add --repository https://dl-cdn.alpinelinux.org/alpine/edge/main/ --no-cache \ | ||
nodejs \ | ||
npm \ | ||
yarn |
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 ruby:2.6-slim | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
# hadolint ignore=DL3009 | ||
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
curl \ | ||
gnupg2 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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 ruby:2.7 | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -\ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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,11 @@ | ||
FROM ruby:2.7-alpine | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN apk -U upgrade \ | ||
&& apk add --repository https://dl-cdn.alpinelinux.org/alpine/edge/main/ --no-cache \ | ||
nodejs \ | ||
npm \ | ||
yarn |
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 ruby:2.7-slim | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
# hadolint ignore=DL3009 | ||
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
curl \ | ||
gnupg2 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -\ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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 ruby:3.0 | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -\ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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,11 @@ | ||
FROM ruby:3.0-alpine | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
RUN apk -U upgrade \ | ||
&& apk add --repository https://dl-cdn.alpinelinux.org/alpine/edge/main/ --no-cache \ | ||
nodejs \ | ||
npm \ | ||
yarn |
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 ruby:3.0-slim | ||
LABEL maintainer "Tim Brust <github@timbrust.de>" | ||
|
||
ARG REFRESHED_AT | ||
ENV REFRESHED_AT $REFRESHED_AT | ||
|
||
# hadolint ignore=DL3009 | ||
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
curl \ | ||
gnupg2 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -\ | ||
&& apt-get update -qq && apt-get install -qq --no-install-recommends \ | ||
nodejs \ | ||
&& apt-get upgrade -qq \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/*\ | ||
&& npm install -g yarn@1 |
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