Files
music_library/.dockerignore
T
Claudio Ortolina 969a3bdf5d Do not copy any git ref in Docker images
Theory here is that this is what makes caching fail, because
HEAD changes at every push
2025-08-27 16:55:45 +03:00

56 lines
1.2 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
# Mix artifacts
/_build/
/deps/
*.ez
# 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
/docs
# Dev tooling and environment
/mise.toml
/mise.local.toml
/.claude/
/.github/