feat: add Node.js 12 LTS Erbium support

This commit is contained in:
Tim Brust 2019-10-24 10:48:04 +02:00
parent e1b0aea830
commit c8ad32c8c6
No known key found for this signature in database
GPG Key ID: C171AF8F3B0A86B3
4 changed files with 19 additions and 8 deletions

View File

@ -4,7 +4,8 @@ services:
- docker
before_install:
- docker pull hadolint/hadolint
- docker pull hadolint/hadolint
script:
- docker run --rm -i hadolint/hadolint hadolint --ignore DL3018 - < Dockerfile
- docker run --rm -i hadolint/hadolint hadolint --ignore DL3018 - < 10/Dockerfile
- docker run --rm -i hadolint/hadolint hadolint --ignore DL3018 - < 12/Dockerfile

9
12/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node:erbium-alpine@sha256:e32343df0b80880915ca3570752cb41ac044253a5deec978f851b3834670fffa
LABEL maintainer "Tim Brust <tim.brust@sinnerschrader.com>"
ARG REFRESHED_AT
ENV REFRESHED_AT $REFRESHED_AT
RUN apk add --no-cache \
git \
openssh

View File

@ -4,15 +4,16 @@
[![Docker Build Status](https://img.shields.io/docker/build/timbru31/node-alpine-git.svg)](https://hub.docker.com/r/timbru31/node-alpine-git/)
[![Build Status](https://travis-ci.org/timbru31/docker-node-alpine-git.svg?branch=master)](https://travis-ci.org/timbru31/docker-node-alpine-git)
A minimal Dockerfile based on Node.js 10 LTS (Dubnium) 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
* Node.js 10
* npm 6
* yarn
* Git
* ssh
- Node.js 10 LTS or Node.js 12 LTS
- npm 6
- yarn
- Git
- ssh
---
Built by (c) Tim Brust and contributors. Released under the MIT license.