Skip to contents

Creates a dockerignore template with patterns to ignore common Git-related files and directories.

Usage

dk_template_ignore_git(.dockerignore = NULL)

Arguments

.dockerignore

Optional existing dockerignore object to add patterns to

Value

A dockerignore object with Git-related ignore patterns

Details

This template adds patterns to ignore common Git-related files and directories, including:

  • .git/: The Git repository directory

  • .gitignore: Git ignore files

  • .gitattributes: Git attributes file

  • .github/: GitHub-specific files

  • .gitlab-ci.yml: GitLab CI configuration

These files are typically not needed in a Docker image and can reduce the build context size.

Examples

# Create a new dockerignore with Git patterns
di <- dk_template_ignore_git()
di
#> .git/
#> .gitignore
#> .gitattributes
#> .github/
#> .gitlab-ci.yml 

# Add Git patterns to an existing dockerignore
di <- dockerignore() |>
  di_add("*.log") |>
  dk_template_ignore_git()
di
#> *.log
#> .git/
#> .gitignore
#> .gitattributes
#> .github/
#> .gitlab-ci.yml