Languages

Elixir .dockerignore

.dockerignore for languages projects

View on GitHub

.dockerignore Content

# ============================================================================
# Created by https://dockerignore.com/
# LANGUAGE-SPECIFIC TEMPLATE for Elixir
# Website: https://elixir-lang.org/
# Repository: https://github.com/elixir-lang/elixir
# ============================================================================

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# TEMPLATE OVERVIEW & USAGE NOTES
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# • TEMPLATE TYPE: LANGUAGE-SPECIFIC TEMPLATE
# • PURPOSE: Elixir-specific ignore patterns for Docker builds
# • DESIGN PHILOSOPHY: Contains only Elixir-specific patterns (no security patterns)
# • COMBINATION GUIDANCE: Combine with framework or common templates as needed
# • SECURITY CONSIDERATIONS: Does NOT include security patterns (use common/security.dockerignore)
# • BEST PRACTICES: Combine with security template for complete protection
# • OFFICIAL SOURCES: Elixir community patterns and best practices

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# ELIXIR DEPENDENCIES & BUILD ARTIFACTS
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Elixir dependencies, build artifacts, and output directories

**/cover/
**/deps/
**/docs/
**/log/
**/priv/static/
**/rel/
**/test-output/
**/test-reports/
mix.lock

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# ELIXIR DEVELOPMENT & TOOLING
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Elixir development tools, configuration, and temporary files

**/.circleci/
**/.credo/
**/.dialyzer/
**/.elixir_ls/
**/.github/
**/.gitlab/
**/.jenkins/
**/.sobelow/
**/assets/css/
**/assets/fonts/
**/assets/images/
**/assets/js/
**/assets/vendor/
*.md
.azure-pipelines.yml
.dialyzer_ignore
.gitlab-ci.yml
.travis.yml

# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# EXCEPTIONS (FILES TO INCLUDE)
# ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
# Important files that should NOT be excluded from Docker builds

!README.md

Note: This file is fetched from GitHub and cached for 7 days.