|
| 1 | +# This file excludes paths from the Docker build context. |
| 2 | +# |
| 3 | +# By default, Docker's build context includes all files (and folders) in the |
| 4 | +# current directory. Even if a file isn't copied into the container it is still sent to |
| 5 | +# the Docker daemon. |
| 6 | +# |
| 7 | +# There are multiple reasons to exclude files from the build context: |
| 8 | +# |
| 9 | +# 1. Prevent nested folders from being copied into the container (ex: exclude |
| 10 | +# /assets/node_modules when copying /assets) |
| 11 | +# 2. Reduce the size of the build context and improve build time (ex. /build, /deps, /doc) |
| 12 | +# 3. Avoid sending files containing sensitive information |
| 13 | +# |
| 14 | +# More information on using .dockerignore is available here: |
| 15 | +# https://docs.docker.com/engine/reference/builder/#dockerignore-file |
| 16 | + |
| 17 | +.dockerignore |
| 18 | + |
| 19 | +# Ignore .fetch files in case you like to edit your project deps locally. |
| 20 | +.fetch |
| 21 | + |
| 22 | +# Ignore package tarball (built via "mix hex.build"). |
| 23 | +qr_code-*.tar |
| 24 | + |
| 25 | +# If NPM crashes, it generates a log, let's ignore it too. |
| 26 | +npm-debug.log |
| 27 | + |
| 28 | +# The directory NPM downloads your dependencies sources to. |
| 29 | +assets/node_modules/ |
| 30 | + |
| 31 | +# Since we are building assets from assets/, |
| 32 | +# we ignore priv/static. You may want to comment |
| 33 | +# this depending on your deployment strategy. |
| 34 | +priv/static/ |
| 35 | +/priv/static/assets/ |
| 36 | +/priv/static/cache_manifest.json |
| 37 | + |
| 38 | +# Ignore dialyzer tables |
| 39 | +priv/plts/*.plt |
| 40 | +priv/plts/*.plt.hash |
| 41 | + |
| 42 | +# Ignore git, but keep git HEAD and refs to access current commit hash if needed: |
| 43 | +# |
| 44 | +# $ cat .git/HEAD | awk '{print ".git/"$2}' | xargs cat |
| 45 | +# d0b8727759e1e0e7aa3d41707d12376e373d5ecc |
| 46 | +.git |
| 47 | +!.git/HEAD |
| 48 | +!.git/refs |
| 49 | +.github/ |
| 50 | +.gitignore |
| 51 | + |
| 52 | +# Common development/test artifacts |
| 53 | +/cover/ |
| 54 | +/doc/ |
| 55 | +/test/ |
| 56 | +/tmp/ |
| 57 | +.elixir_ls |
| 58 | + |
| 59 | +# Mix artifacts |
| 60 | +/_build/ |
| 61 | +/deps/ |
| 62 | +*.ez |
| 63 | + |
| 64 | +# Generated on crash by the VM |
| 65 | +erl_crash.dump |
| 66 | + |
| 67 | +# Backup |
| 68 | +*~ |
| 69 | + |
| 70 | +/tmp/ |
| 71 | +/.env/ |
| 72 | +.env* |
| 73 | +.vimrc |
| 74 | +.projections.json |
| 75 | +.editorconfig |
| 76 | +.bumpversion.cfg |
| 77 | +.vscode/ |
| 78 | +README* |
| 79 | + |
| 80 | +# tags |
| 81 | +tags |
| 82 | +tags.* |
| 83 | +*.tags |
| 84 | + |
| 85 | +.DS_Store |
| 86 | + |
| 87 | +# docker |
| 88 | +Dockerfile |
0 commit comments