From bcddffa27b52158d6e06f5d25567374aa4868094 Mon Sep 17 00:00:00 2001 From: Tim Brust Date: Thu, 29 Jun 2017 18:35:47 +0200 Subject: [PATCH] feat: initial commit --- .editorconfig | 15 +++++++++++++++ .gitignore | 1 + Dockerfile | 6 ++++++ README.md | 14 +++++++++++++- 4 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 Dockerfile diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..60f5e7c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_size = 2 +indent_style = space + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..467191c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:6-alpine +LABEL maintainer "Tim Brust " + +ENV REFRESHED_AT 2017-06-29 +RUN apk update && apk upgrade +RUN apk add git diff --git a/README.md b/README.md index 976836a..0f61b40 100644 --- a/README.md +++ b/README.md @@ -1 +1,13 @@ -# docker-node-alpine-git \ No newline at end of file +# Node.js with Git Dockerfile + +A minimal Dockerfile based on Node.js 6 LTS (Boron) branch (alpine) with the Git installed. + +## What's included + +* Node.js 6 +* npm 3 +* yarn +* Git + +--- +Built by (c) Tim Brust and contributors. Released under the MIT license.