Skip to content

Commit

Permalink
add file to keep encoding and eof.
Browse files Browse the repository at this point in the history
add docker files to test and build them.
  • Loading branch information
Bruno O committed Mar 24, 2017
1 parent 16bb714 commit 62143d5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root = true

[*]
charset = utf-8
end_of_line = lf
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: '2'

services:
node:
build: .
command: yarn test
8 changes: 8 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:6

ENV NPM_CONFIG_LOGLEVEL warn

WORKDIR /usr/src/inotify
COPY . .

RUN yarn add -D node-gyp

0 comments on commit 62143d5

Please sign in to comment.