.dockerignore raw

   1  # Exclude heavy or host-specific data from Docker build context
   2  # Fixes: failed to solve: error from sender: open cmd/benchmark/data/postgres: permission denied
   3  
   4  # Benchmark data and reports (mounted at runtime via volumes)
   5  ../../cmd/benchmark/data/
   6  cmd/benchmark/reports/
   7  
   8  # VCS and OS cruft
   9  .git
  10  .gitignore
  11  **/.DS_Store
  12  **/Thumbs.db
  13  
  14  # Go build cache and binaries
  15  **/bin/
  16  **/build/
  17  **/*.out
  18  
  19  # Allow web dist directory (needed for embedding)
  20  !app/web/dist/
  21