Skip to content

Commit

Permalink
Add dockerignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
ClFeSc committed Feb 11, 2022
1 parent e75bcb5 commit 09c01ad
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Ignore everything from .gitignore
node_modules/
dist/

# jest
/coverage

# Ignore test files
**/test
**/*.spec*
7 changes: 7 additions & 0 deletions backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

# Ignore everything from .gitignore/node_modules
/dist
/coverage
.env

backend/coverage
16 changes: 16 additions & 0 deletions frontend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Ignore everything from .gitignore
/node_modules
/dist

/.angular
/coverage

# cypress
/cypress/screenshots
/cypress/videos
/cypress/downloads
/cypress-visual-screenshots/comparison
/cypress-visual-screenshots/diff

# Ignore everything from cypress
/cypress*
8 changes: 8 additions & 0 deletions shared/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Ignore everything from .gitignore
/node_modules
/dist
/coverage
tsconfig.build.tsbuildinfo

shared/coverage
shared/tsconfig.build.tsbuildinfo

0 comments on commit 09c01ad

Please sign in to comment.