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.