.dockerignore 378 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Node
  2. node_modules
  3. npm-debug.log
  4. yarn-error.log
  5. # Build output
  6. dist
  7. # Environment files
  8. .env
  9. .env.local
  10. .env.*.local
  11. # Git
  12. .git
  13. .gitignore
  14. .gitmodules
  15. # Documentation
  16. *.md
  17. docs-api
  18. # IDE
  19. .vscode
  20. .idea
  21. *.swp
  22. *.swo
  23. *~
  24. # OS
  25. .DS_Store
  26. Thumbs.db
  27. # Testing
  28. coverage
  29. .nyc_output
  30. # Docker
  31. Dockerfile
  32. .dockerignore
  33. docker-compose.yml
  34. # CI/CD
  35. .github
  36. .gitlab-ci.yml
  37. .travis.yml