56 lines
645 B
Plaintext
56 lines
645 B
Plaintext
# ============================================================================
|
|
# .dockerignore - Arquivos/pastas que NÃO devem ser copiados para a imagem
|
|
# ============================================================================
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Node.js
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
.npm
|
|
.eslintcache
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.env.local
|
|
|
|
# Build
|
|
dist
|
|
build
|
|
coverage
|
|
.next
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
.dockerignore
|
|
Dockerfile
|
|
|
|
# Documentação
|
|
README.md
|
|
docs
|
|
*.md
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Tests
|
|
test
|
|
tests
|
|
*.test.ts
|
|
*.spec.ts
|
|
|
|
# Misc
|
|
.env.example
|
|
.env.*.local
|