feat: initial commit

This commit is contained in:
Tim Brust 2017-06-29 18:35:47 +02:00
parent 044a7970cd
commit bcddffa27b
No known key found for this signature in database
GPG Key ID: C171AF8F3B0A86B3
4 changed files with 35 additions and 1 deletions

15
.editorconfig Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_Store

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:6-alpine
LABEL maintainer "Tim Brust <tim.brust@sinnerschrader.com>"
ENV REFRESHED_AT 2017-06-29
RUN apk update && apk upgrade
RUN apk add git

View File

@ -1 +1,13 @@
# docker-node-alpine-git # 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.