# `Docker.Commands.Build`
[🔗](https://github.com/joshrotenberg/docker_wrapper_ex/blob/v0.1.2/lib/docker/commands/build.ex#L1)

Implements the `Docker.Command` behaviour for `docker build`.

## Examples

    import Docker.Commands.Build

    "."
    |> new()
    |> tag("myapp:latest")
    |> build_arg("VERSION", "1.0")
    |> no_cache()
    |> Docker.build()

# `t`

```elixir
@type t() :: %Docker.Commands.Build{
  build_args: [{String.t(), String.t()}],
  cache_from: [String.t()],
  context: String.t(),
  extra_args: [String.t()],
  file: String.t() | nil,
  force_rm: boolean(),
  labels: [{String.t(), String.t()}],
  network: String.t() | nil,
  no_cache: boolean(),
  platform: String.t() | nil,
  pull: boolean(),
  quiet: boolean(),
  rm: boolean(),
  tags: [String.t()],
  target: String.t() | nil
}
```

# `build_arg`

# `cache_from`

# `file`

# `force_rm`

# `label`

# `network`

# `new`

# `no_cache`

# `platform`

# `pull`

# `quiet`

# `raw`

# `rm`

# `tag`

# `target`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
