.dockerignore 910 B

123456789101112131415161718192021222324252627282930313233343536
  1. # The directory Mix will write compiled artifacts to.
  2. /_build/
  3. # If you run "mix test --cover", coverage assets end up here.
  4. /cover/
  5. # The directory Mix downloads your dependencies sources to.
  6. /deps/
  7. # Where 3rd-party dependencies like ExDoc output generated docs.
  8. /doc/
  9. # Ignore .fetch files in case you like to edit your project deps locally.
  10. /.fetch
  11. # If the VM crashes, it generates a dump, let's ignore it too.
  12. erl_crash.dump
  13. # Also ignore archive artifacts (built via "mix archive.build").
  14. *.ez
  15. # Ignore package tarball (built via "mix hex.build").
  16. podcast_feed-*.tar
  17. # If NPM crashes, it generates a log, let's ignore it too.
  18. npm-debug.log
  19. # The directory NPM downloads your dependencies sources to.
  20. /assets/node_modules/
  21. # Since we are building assets from assets/,
  22. # we ignore priv/static. You may want to comment
  23. # this depending on your deployment strategy.
  24. rel/
  25. metadata.json
  26. .buildpacks