mirror of
https://github.com/Neur0toxine/docker-node-alpine-git-gyp.git
synced 2024-11-24 13:26:03 +03:00
feat: adds Node.js 14 LTS (Fermium) flavor
This commit is contained in:
parent
b236705004
commit
1a01b984c7
5
.github/workflows/buildx.yml
vendored
5
.github/workflows/buildx.yml
vendored
@ -16,7 +16,10 @@ jobs:
|
|||||||
tags: 10,dubnium
|
tags: 10,dubnium
|
||||||
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
|
||||||
- path: 12
|
- path: 12
|
||||||
tags: 12,erbium,latest
|
tags: 12,erbium
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/arm/v7,linux/arm/v6
|
||||||
|
- path: 14
|
||||||
|
tags: 14,fermium,latest
|
||||||
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/arm/v7,linux/arm/v6
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/arm/v7,linux/arm/v6
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
1
.github/workflows/dockerimage.yml
vendored
1
.github/workflows/dockerimage.yml
vendored
@ -11,3 +11,4 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
docker run -i $(docker build -q 10) /bin/sh -c "node --version && git --version"
|
docker run -i $(docker build -q 10) /bin/sh -c "node --version && git --version"
|
||||||
docker run -i $(docker build -q 12) /bin/sh -c "node --version && git --version"
|
docker run -i $(docker build -q 12) /bin/sh -c "node --version && git --version"
|
||||||
|
docker run -i $(docker build -q 14) /bin/sh -c "node --version && git --version"
|
||||||
|
2
.github/workflows/hadolint.yml
vendored
2
.github/workflows/hadolint.yml
vendored
@ -8,4 +8,4 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: brew install hadolint
|
- run: brew install hadolint
|
||||||
- run: hadolint {10,12}/Dockerfile
|
- run: hadolint {10,12,14}/Dockerfile
|
||||||
|
9
14/Dockerfile
Normal file
9
14/Dockerfile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
FROM node:fermium-alpine3.12
|
||||||
|
LABEL maintainer "Tim Brust <github@timbrust.de>"
|
||||||
|
|
||||||
|
ARG REFRESHED_AT
|
||||||
|
ENV REFRESHED_AT $REFRESHED_AT
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
git \
|
||||||
|
openssh
|
@ -4,12 +4,11 @@
|
|||||||
[![buildx Status](https://github.com/timbru31/docker-node-alpine-git/workflows/buildx/badge.svg)](https://github.com/timbru31/docker-node-alpine-git/actions?query=workflow%3Abuildx)
|
[![buildx Status](https://github.com/timbru31/docker-node-alpine-git/workflows/buildx/badge.svg)](https://github.com/timbru31/docker-node-alpine-git/actions?query=workflow%3Abuildx)
|
||||||
[![Lint Dockerfiles](https://github.com/timbru31/docker-node-alpine-git/workflows/Lint%20Dockerfiles/badge.svg)](https://github.com/timbru31/docker-node-alpine-git/actions?query=workflow%3A%22Lint+Dockerfiles%22)
|
[![Lint Dockerfiles](https://github.com/timbru31/docker-node-alpine-git/workflows/Lint%20Dockerfiles/badge.svg)](https://github.com/timbru31/docker-node-alpine-git/actions?query=workflow%3A%22Lint+Dockerfiles%22)
|
||||||
|
|
||||||
|
A minimal Dockerfile based on Node.js 10 LTS (Dubnium), Node.js 12 LTS (Erbium) or Node.js 14 LTS (Fermium) alpine with Git and ssh installed.
|
||||||
A minimal Dockerfile based on Node.js 10 LTS (Dubnium) or Node.js 12 LTS (Erbium) alpine with Git and ssh installed.
|
|
||||||
|
|
||||||
## What's included
|
## What's included
|
||||||
|
|
||||||
- Node.js 10 LTS or Node.js 12 LTS
|
- Node.js 10 LTS, Node.js 12 LTS or Node.js 14 LTS
|
||||||
- npm 6
|
- npm 6
|
||||||
- yarn
|
- yarn
|
||||||
- Git
|
- Git
|
||||||
@ -18,6 +17,7 @@ A minimal Dockerfile based on Node.js 10 LTS (Dubnium) or Node.js 12 LTS (Erbium
|
|||||||
### Available platforms
|
### Available platforms
|
||||||
|
|
||||||
These Dockerfiles leverage the new `buildx` functionality and offer the following platforms:
|
These Dockerfiles leverage the new `buildx` functionality and offer the following platforms:
|
||||||
|
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/arm/v7
|
- linux/arm/v7
|
||||||
|
Loading…
Reference in New Issue
Block a user