Skip to contents

Creates a dockerignore template with patterns to ignore Node.js and JavaScript related files and directories. `

Usage

dk_template_ignore_node(.dockerignore = NULL)

Arguments

.dockerignore

Optional existing dockerignore object to add patterns to

Value

A dockerignore object with Node.js-related ignore patterns

Details

This template adds patterns to ignore Node.js and JavaScript related files and directories, including:

  • node_modules/: Package dependencies

  • npm-debug.log*, yarn-error.log*: Package manager logs

  • package-lock.json, yarn.lock: Lock files

  • .npm/, .yarn/: Cache directories

  • *.tgz: Packaged modules

  • .pnp.*: Plug'n'Play files

  • .cache/: Build cache

  • .eslintcache: ESLint cache

These files are typically not needed in a Docker image or can be regenerated during the build process. Ignoring them can significantly reduce the build context size, especially node_modules/ which can be very large.

Examples

# Create a new dockerignore with Node.js patterns
di <- dk_template_ignore_node()
di 
#> node_modules/
#> npm-debug.log*
#> yarn-error.log*
#> yarn-debug.log*
#> package-lock.json
#> yarn.lock
#> .npm/
#> .yarn/
#> *.tgz
#> .pnp.*
#> .cache/
#> .eslintcache
#> .node_repl_history 

# Add Node.js patterns to an existing dockerignore
di <- dockerignore() |>
  di_add("*.log") |>
  dk_template_ignore_node()
di
#> *.log
#> node_modules/
#> npm-debug.log*
#> yarn-error.log*
#> yarn-debug.log*
#> package-lock.json
#> yarn.lock
#> .npm/
#> .yarn/
#> *.tgz
#> .pnp.*
#> .cache/
#> .eslintcache
#> .node_repl_history