You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
703 B

9 months ago
  1. # See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
  2. # Ignore git directory.
  3. /.git/
  4. # Ignore bundler config.
  5. /.bundle
  6. # Ignore all environment files (except templates).
  7. /.env*
  8. !/.env*.erb
  9. # Ignore all default key files.
  10. /config/master.key
  11. /config/credentials/*.key
  12. # Ignore all logfiles and tempfiles.
  13. /log/*
  14. /tmp/*
  15. !/log/.keep
  16. !/tmp/.keep
  17. # Ignore pidfiles, but keep the directory.
  18. /tmp/pids/*
  19. !/tmp/pids/.keep
  20. # Ignore storage (uploaded files in development and any SQLite databases).
  21. /storage/*
  22. !/storage/.keep
  23. /tmp/storage/*
  24. !/tmp/storage/.keep
  25. # Ignore assets.
  26. /node_modules/
  27. /app/assets/builds/*
  28. !/app/assets/builds/.keep
  29. /public/assets