87 lines
1.5 KiB
Plaintext
87 lines
1.5 KiB
Plaintext
# This file excludes paths from the Docker build context.
|
|
#
|
|
# By default, Docker's build context includes all files (and folders) in the
|
|
# current directory. Even if a file isn't copied into the container it is still sent to
|
|
# the Docker daemon.
|
|
#
|
|
# There are multiple reasons to exclude files from the build context:
|
|
#
|
|
# 1. Prevent nested folders from being copied into the container (ex: exclude
|
|
# /assets/node_modules when copying /assets)
|
|
# 2. Reduce the size of the build context and improve build time (ex. /build, /deps, /doc)
|
|
# 3. Avoid sending files containing sensitive information
|
|
#
|
|
# More information on using .dockerignore is available here:
|
|
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
.dockerignore
|
|
|
|
.DS_Store
|
|
**/.DS_Store
|
|
|
|
# Ignore git
|
|
.git
|
|
|
|
# Common development/test artifacts
|
|
/cover/
|
|
/doc/
|
|
/test/
|
|
/tmp/
|
|
.elixir_ls
|
|
.expert
|
|
.iex.exs
|
|
/.shellcheckrc
|
|
.credo.exs
|
|
.formatter.exs
|
|
.sobelow-conf
|
|
|
|
compose.yaml
|
|
Dockerfile
|
|
|
|
# Mix artifacts
|
|
/_build/
|
|
/deps/
|
|
/.fetch
|
|
*.ez
|
|
|
|
# Scripts
|
|
/scripts/
|
|
|
|
# Generated on crash by the VM
|
|
erl_crash.dump
|
|
|
|
# Static artifacts - These should be fetched and built inside the Docker image
|
|
/assets/node_modules/
|
|
/priv/static/assets/
|
|
/priv/static/cache_manifest.json
|
|
|
|
# Dev databases
|
|
/data
|
|
|
|
/.github/
|
|
|
|
README.md
|
|
/docs
|
|
/.claude/
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
*.livemd
|
|
/.agents/
|
|
/.pi/
|
|
|
|
# Dev tooling and environment
|
|
/mise.toml
|
|
/mise.local.toml
|
|
/.tool-versions
|
|
/.lexical
|
|
.env.example
|
|
|
|
# Benchmarks
|
|
/bench
|
|
|
|
# Backlog
|
|
/backlog
|
|
|
|
# Presto
|
|
/presto
|