-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore all the build directories in Docker
This allows for reproducible builds. Also, fix Dockerfile to first build and then run tests and a typo in the entrypoint. Thanks @BenHall for reporting the issue with the Docker build!
- Loading branch information
1 parent
a4c958c
commit 61c213f
Showing
2 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
node_modules | ||
.git | ||
node_modules/ | ||
*.swp | ||
.lock-wscript | ||
lib/ | ||
Makefile.gyp | ||
*.Makefile | ||
*.target.gyp.mk | ||
*.node | ||
example/*.log | ||
docs/ | ||
npm-debug.log | ||
/.idea/ | ||
.env | ||
build/ | ||
.vscode/ | ||
.git/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters