893b01
% "CONTAINERFILE" "5" "Aug 2021" "" "Container User Manuals"
893b01
893b01
# NAME
893b01
893b01
Containerfile(Dockerfile) - automate the steps of creating a container image
893b01
893b01
# INTRODUCTION
893b01
893b01
The **Containerfile** is a configuration file that automates the steps of creating a container image. It is similar to a Makefile. Container engines (Podman, Buildah, Docker) read instructions from the **Containerfile** to automate the steps otherwise performed manually to create an image. To build an image, create a file called **Containerfile**.
893b01
893b01
The **Containerfile** describes the steps taken to assemble the image. When the
893b01
**Containerfile** has been created, call the `buildah bud`, `podman build`, `docker build` command,
893b01
using the path of context directory that contains **Containerfile** as the argument. Podman and Buildah default to **Containerfile** and will fall back to **Dockerfile**. Docker only will search for **Dockerfile** in the context directory.
893b01
893b01
893b01
**Dockerfile** is an alternate name for the same object.  **Containerfile** and **Dockerfile** support the same syntax.
893b01
893b01
# SYNOPSIS
893b01
893b01
INSTRUCTION arguments
893b01
893b01
For example:
893b01
893b01
  FROM image
893b01
893b01
# DESCRIPTION
893b01
893b01
A Containerfile is a file that automates the steps of creating a container image.
893b01
A Containerfile is similar to a Makefile.
893b01
893b01
# USAGE
893b01
893b01
  ```
893b01
  buildah bud .
893b01
  podman build .
893b01
  ```
893b01
893b01
  -- Runs the steps and commits them, building a final image.
893b01
  The path to the source repository defines where to find the context of the
893b01
  build.
893b01
893b01
  ```
893b01
  buildah bud -t repository/tag .
893b01
  podman build -t repository/tag .
893b01
  ```
893b01
893b01
  -- specifies a repository and tag at which to save the new image if the build
893b01
  succeeds. The container engine runs the steps one-by-one, committing the result
893b01
  to a new image if necessary, before finally outputting the ID of the new
893b01
  image.
893b01
893b01
  Container engines re-use intermediate images whenever possible. This significantly
893b01
  accelerates the *build* process.
893b01
893b01
# FORMAT
893b01
893b01
  `FROM image`
893b01
893b01
  `FROM image:tag`
893b01
893b01
  `FROM image@digest`
893b01
893b01
  -- The **FROM** instruction sets the base image for subsequent instructions. A
893b01
  valid Containerfile must have either **ARG** or *FROM** as its first instruction.
893b01
  If **FROM** is not the first instruction in the file, it may only be preceded by
893b01
  one or more ARG instructions, which declare arguments that are used in the next FROM line in the Containerfile.
893b01
  The image can be any valid image. It is easy to start by pulling an image from the public
893b01
  repositories.
893b01
893b01
  -- **FROM** must appear at least once in the Containerfile.
893b01
893b01
  -- **FROM** The first **FROM** command must come before all other instructions in
893b01
  the Containerfile except **ARG**
893b01
893b01
  -- **FROM** may appear multiple times within a single Containerfile in order to create
893b01
  multiple images. Make a note of the last image ID output by the commit before
893b01
  each new **FROM** command.
893b01
893b01
  -- If no tag is given to the **FROM** instruction, container engines apply the
893b01
  `latest` tag. If the used tag does not exist, an error is returned.
893b01
893b01
  -- If no digest is given to the **FROM** instruction, container engines apply the
893b01
  `latest` tag. If the used tag does not exist, an error is returned.
893b01
893b01
**MAINTAINER**
893b01
  -- **MAINTAINER** sets the Author field for the generated images.
893b01
  Useful for providing users with an email or url for support.
893b01
893b01
**RUN**
893b01
  -- **RUN** has two forms:
893b01
893b01
  ```
893b01
  # the command is run in a shell - /bin/sh -c
893b01
  RUN <command>
893b01
893b01
  # Executable form
893b01
  RUN ["executable", "param1", "param2"]
893b01
  ```
893b01
**RUN mounts**
893b01
893b01
**--mount**=*type=TYPE,TYPE-SPECIFIC-OPTION[,...]*
893b01
893b01
Attach a filesystem mount to the container
893b01
893b01
Current supported mount TYPES are bind, cache, secret and tmpfs.
893b01
893b01
       e.g.
893b01
893b01
       mount=type=bind,source=/path/on/host,destination=/path/in/container
893b01
893b01
       mount=type=tmpfs,tmpfs-size=512M,destination=/path/in/container
893b01
893b01
       mount=type=secret,id=mysecret cat /run/secrets/mysecret
893b01
893b01
       Common Options:
893b01
893b01
              · src, source: mount source spec for bind and volume. Mandatory for bind. If `from` is specified, `src` is the subpath in the `from` field.
893b01
893b01
              · dst, destination, target: mount destination spec.
893b01
893b01
              · ro, read-only: true or false (default).
893b01
893b01
       Options specific to bind:
893b01
893b01
              · bind-propagation: shared, slave, private, rshared, rslave, or rprivate(default). See also mount(2).
893b01
893b01
              . bind-nonrecursive: do not setup a recursive bind mount.  By default it is recursive.
893b01
893b01
              · from: stage or image name for the root of the source. Defaults to the build context.
893b01
893b01
       Options specific to tmpfs:
893b01
893b01
              · tmpfs-size: Size of the tmpfs mount in bytes. Unlimited by default in Linux.
893b01
893b01
              · tmpfs-mode: File mode of the tmpfs in octal. (e.g. 700 or 0700.) Defaults to 1777 in Linux.
893b01
893b01
              · tmpcopyup: Path that is shadowed by the tmpfs mount is recursively copied up to the tmpfs itself.
893b01
893b01
	Options specific to cache:
893b01
893b01
              · id: Create a separate cache directory for a particular id.
893b01
893b01
              · mode: File mode for new cache directory in octal. Default 0755.
893b01
893b01
              · ro, readonly: read only cache if set.
893b01
893b01
              · uid: uid for cache directory.
893b01
893b01
              · gid: gid for cache directory.
893b01
893b01
              · from: stage name for the root of the source. Defaults to host cache directory.
893b01
893b01
893b01
**RUN Secrets**
893b01
893b01
The RUN command has a feature to allow the passing of secret information into the image build. These secrets files can be used during the RUN command but are not committed to the final image. The `RUN` command supports the `--mount` option to identify the secret file. A secret file from the host is mounted into the container while the image is being built.
893b01
893b01
Container engines pass secret the secret file into the build using the `--secret` flag.
893b01
893b01
**--mount**=*type=secret,TYPE-SPECIFIC-OPTION[,...]*
893b01
893b01
- `id` is the identifier for the secret passed into the `buildah bud --secret` or `podman build --secret`. This identifier is associated with the RUN --mount identifier to use in the Containerfile.
893b01
893b01
- `dst`|`target`|`destination` rename the secret file to a specific file in the Containerfile RUN command to use.
893b01
893b01
- `type=secret` tells the --mount command that it is mounting in a secret file
893b01
893b01
```
893b01
# shows secret from default secret location:
893b01
RUN --mount=type=secret,id=mysecret cat /run/secrets/mysecret
893b01
```
893b01
```
893b01
# shows secret from custom secret location:
893b01
RUN --mount=type=secret,id=mysecret,dst=/foobar cat /foobar
893b01
```
893b01
The secret needs to be passed to the build using the --secret flag. The final image built does not container the secret file:
893b01
893b01
```
893b01
 buildah bud --no-cache --secret id=mysecret,src=mysecret.txt .
893b01
```
893b01
893b01
  -- The **RUN** instruction executes any commands in a new layer on top of the current
893b01
  image and commits the results. The committed image is used for the next step in
893b01
  Containerfile.
893b01
893b01
  -- Layering **RUN** instructions and generating commits conforms to the core
893b01
  concepts of container engines where commits are cheap and containers can be created from
893b01
  any point in the history of an image. This is similar to source control.  The
893b01
  exec form makes it possible to avoid shell string munging. The exec form makes
893b01
  it possible to **RUN** commands using a base image that does not contain `/bin/sh`.
893b01
893b01
  Note that the exec form is parsed as a JSON array, which means that you must
893b01
  use double-quotes (") around words, not single-quotes (').
893b01
893b01
**CMD**
893b01
  -- **CMD** has three forms:
893b01
893b01
  ```
893b01
  # Executable form
893b01
  CMD ["executable", "param1", "param2"]`
893b01
893b01
  # Provide default arguments to ENTRYPOINT
893b01
  CMD ["param1", "param2"]`
893b01
893b01
  # the command is run in a shell - /bin/sh -c
893b01
  CMD command param1 param2
893b01
  ```
893b01
893b01
  -- There should be only one **CMD** in a Containerfile. If more than one **CMD** is listed, only
893b01
  the last **CMD** takes effect.
893b01
  The main purpose of a **CMD** is to provide defaults for an executing container.
893b01
  These defaults may include an executable, or they can omit the executable. If
893b01
  they omit the executable, an **ENTRYPOINT** must be specified.
893b01
  When used in the shell or exec formats, the **CMD** instruction sets the command to
893b01
  be executed when running the image.
893b01
  If you use the shell form of the **CMD**, the `<command>` executes in `/bin/sh -c`:
893b01
893b01
  Note that the exec form is parsed as a JSON array, which means that you must
893b01
  use double-quotes (") around words, not single-quotes (').
893b01
893b01
  ```
893b01
  FROM ubuntu
893b01
  CMD echo "This is a test." | wc -
893b01
  ```
893b01
893b01
  -- If you run **command** without a shell, then you must express the command as a
893b01
  JSON array and give the full path to the executable. This array form is the
893b01
  preferred form of **CMD**. All additional parameters must be individually expressed
893b01
  as strings in the array:
893b01
893b01
  ```
893b01
  FROM ubuntu
893b01
  CMD ["/usr/bin/wc","--help"]
893b01
  ```
893b01
893b01
  -- To make the container run the same executable every time, use **ENTRYPOINT** in
893b01
  combination with **CMD**.
893b01
  If the user specifies arguments to `podman run` or `docker run`, the specified commands
893b01
  override the default in **CMD**.
893b01
  Do not confuse **RUN** with **CMD**. **RUN** runs a command and commits the result.
893b01
  **CMD** executes nothing at build time, but specifies the intended command for
893b01
  the image.
893b01
893b01
**LABEL**
893b01
  -- `LABEL <key>=<value> [<key>=<value> ...]`or
893b01
  ```
893b01
  LABEL <key>[ <value>]
893b01
  LABEL <key>[ <value>]
893b01
  ...
893b01
  ```
893b01
  The **LABEL** instruction adds metadata to an image. A **LABEL** is a
893b01
  key-value pair. To specify a **LABEL** without a value, simply use an empty
893b01
  string. To include spaces within a **LABEL** value, use quotes and
893b01
  backslashes as you would in command-line parsing.
893b01
893b01
  ```
893b01
  LABEL com.example.vendor="ACME Incorporated"
893b01
  LABEL com.example.vendor "ACME Incorporated"
893b01
  LABEL com.example.vendor.is-beta ""
893b01
  LABEL com.example.vendor.is-beta=
893b01
  LABEL com.example.vendor.is-beta=""
893b01
  ```
893b01
893b01
  An image can have more than one label. To specify multiple labels, separate
893b01
  each key-value pair by a space.
893b01
893b01
  Labels are additive including `LABEL`s in `FROM` images. As the system
893b01
  encounters and then applies a new label, new `key`s override any previous
893b01
  labels with identical keys.
893b01
893b01
  To display an image's labels, use the `buildah inspect` command.
893b01
893b01
**EXPOSE**
893b01
  -- `EXPOSE <port> [<port>...]`
893b01
  The **EXPOSE** instruction informs the container engine that the container listens on the
893b01
  specified network ports at runtime. The container engine uses this information to
893b01
  interconnect containers using links and to set up port redirection on the host
893b01
  system.
893b01
893b01
**ENV**
893b01
  -- `ENV <key> <value>`
893b01
  The **ENV** instruction sets the environment variable <key> to
893b01
  the value `<value>`. This value is passed to all future
893b01
  **RUN**, **ENTRYPOINT**, and **CMD** instructions. This is
893b01
  functionally equivalent to prefixing the command with `<key>=<value>`.  The
893b01
  environment variables that are set with **ENV** persist when a container is run
893b01
  from the resulting image. Use `podman inspect` to inspect these values, and
893b01
  change them using `podman run --env <key>=<value>`.
893b01
893b01
  Note that setting "`ENV DEBIAN_FRONTEND=noninteractive`" may cause
893b01
  unintended consequences, because it will persist when the container is run
893b01
  interactively, as with the following command: `podman run -t -i image bash`
893b01
893b01
**ADD**
893b01
  -- **ADD** has two forms:
893b01
893b01
  ```
893b01
  ADD <src> <dest>
893b01
893b01
  # Required for paths with whitespace
893b01
  ADD ["<src>",... "<dest>"]
893b01
  ```
893b01
893b01
  The **ADD** instruction copies new files, directories
893b01
  or remote file URLs to the filesystem of the container at path `<dest>`.
893b01
  Multiple `<src>` resources may be specified but if they are files or directories
893b01
  then they must be relative to the source directory that is being built
893b01
  (the context of the build). The `<dest>` is the absolute path, or path relative
893b01
  to **WORKDIR**, into which the source is copied inside the target container.
893b01
  If the `<src>` argument is a local file in a recognized compression format
893b01
  (tar, gzip, bzip2, etc) then it is unpacked at the specified `<dest>` in the
893b01
  container's filesystem.  Note that only local compressed files will be unpacked,
893b01
  i.e., the URL download and archive unpacking features cannot be used together.
893b01
  All new directories are created with mode 0755 and with the uid and gid of **0**.
893b01
893b01
**COPY**
893b01
  -- **COPY** has two forms:
893b01
893b01
  ```
893b01
  COPY <src> <dest>
893b01
893b01
  # Required for paths with whitespace
893b01
  COPY ["<src>",... "<dest>"]
893b01
  ```
893b01
893b01
  The **COPY** instruction copies new files from `<src>` and
893b01
  adds them to the filesystem of the container at path <dest>. The `<src>` must be
893b01
  the path to a file or directory relative to the source directory that is
893b01
  being built (the context of the build) or a remote file URL. The `<dest>` is an
893b01
  absolute path, or a path relative to **WORKDIR**, into which the source will
893b01
  be copied inside the target container. If you **COPY** an archive file it will
893b01
  land in the container exactly as it appears in the build context without any
893b01
  attempt to unpack it.  All new files and directories are created with mode **0755**
893b01
  and with the uid and gid of **0**.
893b01
893b01
**ENTRYPOINT**
893b01
  -- **ENTRYPOINT** has two forms:
893b01
893b01
  ```
893b01
  # executable form
893b01
  ENTRYPOINT ["executable", "param1", "param2"]`
893b01
893b01
  # run command in a shell - /bin/sh -c
893b01
  ENTRYPOINT command param1 param2
893b01
  ```
893b01
893b01
  -- An **ENTRYPOINT** helps you configure a
893b01
  container that can be run as an executable. When you specify an **ENTRYPOINT**,
893b01
  the whole container runs as if it was only that executable.  The **ENTRYPOINT**
893b01
  instruction adds an entry command that is not overwritten when arguments are
893b01
  passed to `podman run`. This is different from the behavior of **CMD**. This allows
893b01
  arguments to be passed to the entrypoint, for instance `podman run <image> -d`
893b01
  passes the -d argument to the **ENTRYPOINT**.  Specify parameters either in the
893b01
  **ENTRYPOINT** JSON array (as in the preferred exec form above), or by using a **CMD**
893b01
  statement.  Parameters in the **ENTRYPOINT** are not overwritten by the `podman run` arguments.  Parameters specified via **CMD** are overwritten by `podman run` arguments.  Specify a plain string for the **ENTRYPOINT**, and it will execute in
893b01
  `/bin/sh -c`, like a **CMD** instruction:
893b01
893b01
  ```
893b01
  FROM ubuntu
893b01
  ENTRYPOINT wc -l -
893b01
  ```
893b01
893b01
  This means that the Containerfile's image always takes stdin as input (that's
893b01
  what "-" means), and prints the number of lines (that's what "-l" means). To
893b01
  make this optional but default, use a **CMD**:
893b01
893b01
  ```
893b01
  FROM ubuntu
893b01
  CMD ["-l", "-"]
893b01
  ENTRYPOINT ["/usr/bin/wc"]
893b01
  ```
893b01
893b01
**VOLUME**
893b01
  -- `VOLUME ["/data"]`
893b01
  The **VOLUME** instruction creates a mount point with the specified name and marks
893b01
  it as holding externally-mounted volumes from the native host or from other
893b01
  containers.
893b01
893b01
**USER**
893b01
  -- `USER daemon`
893b01
  Sets the username or UID used for running subsequent commands.
893b01
893b01
  The **USER** instruction can optionally be used to set the group or GID. The
893b01
  following examples are all valid:
893b01
  USER [user | user:group | uid | uid:gid | user:gid | uid:group ]
893b01
893b01
  Until the **USER** instruction is set, instructions will be run as root. The USER
893b01
  instruction can be used any number of times in a Containerfile, and will only affect
893b01
  subsequent commands.
893b01
893b01
**WORKDIR**
893b01
  -- `WORKDIR /path/to/workdir`
893b01
  The **WORKDIR** instruction sets the working directory for the **RUN**, **CMD**,
893b01
  **ENTRYPOINT**, **COPY** and **ADD** Containerfile commands that follow it. It can
893b01
  be used multiple times in a single Containerfile. Relative paths are defined
893b01
  relative to the path of the previous **WORKDIR** instruction. For example:
893b01
893b01
  ```
893b01
  WORKDIR /a
893b01
  WORKDIR b
893b01
  WORKDIR c
893b01
  RUN pwd
893b01
  ```
893b01
893b01
  In the above example, the output of the **pwd** command is **a/b/c**.
893b01
893b01
**ARG**
893b01
   -- ARG <name>[=<default value>]
893b01
893b01
  The `ARG` instruction defines a variable that users can pass at build-time to
893b01
  the builder with the `podman build` and `buildah build` commands using the
893b01
  `--build-arg <varname>=<value>` flag. If a user specifies a build argument that
893b01
  was not defined in the Containerfile, the build outputs a warning.
893b01
893b01
  Note that a second FROM in a Containerfile sets the values associated with an
893b01
  Arg variable to nil and they must be reset if they are to be used later in
893b01
  the Containerfile
893b01
893b01
```
893b01
  [Warning] One or more build-args [foo] were not consumed
893b01
  ```
893b01
893b01
  The Containerfile author can define a single variable by specifying `ARG` once or many
893b01
  variables by specifying `ARG` more than once. For example, a valid Containerfile:
893b01
893b01
  ```
893b01
  FROM busybox
893b01
  ARG user1
893b01
  ARG buildno
893b01
  ...
893b01
  ```
893b01
893b01
  A Containerfile author may optionally specify a default value for an `ARG` instruction:
893b01
893b01
  ```
893b01
  FROM busybox
893b01
  ARG user1=someuser
893b01
  ARG buildno=1
893b01
  ...
893b01
  ```
893b01
893b01
  If an `ARG` value has a default and if there is no value passed at build-time, the
893b01
  builder uses the default.
893b01
893b01
  An `ARG` variable definition comes into effect from the line on which it is
893b01
  defined in the `Containerfile` not from the argument's use on the command-line or
893b01
  elsewhere.  For example, consider this Containerfile:
893b01
893b01
  ```
893b01
  1 FROM busybox
893b01
  2 USER ${user:-some_user}
893b01
  3 ARG user
893b01
  4 USER $user
893b01
  ...
893b01
  ```
893b01
  A user builds this file by calling:
893b01
893b01
  ```
893b01
  $ podman build --build-arg user=what_user Containerfile
893b01
  ```
893b01
893b01
  The `USER` at line 2 evaluates to `some_user` as the `user` variable is defined on the
893b01
  subsequent line 3. The `USER` at line 4 evaluates to `what_user` as `user` is
893b01
  defined and the `what_user` value was passed on the command line. Prior to its definition by an
893b01
  `ARG` instruction, any use of a variable results in an empty string.
893b01
893b01
  > **Warning:** It is not recommended to use build-time variables for
893b01
  >  passing secrets like github keys, user credentials etc. Build-time variable
893b01
  >  values are visible to any user of the image with the `podman history` command.
893b01
893b01
  You can use an `ARG` or an `ENV` instruction to specify variables that are
893b01
  available to the `RUN` instruction. Environment variables defined using the
893b01
  `ENV` instruction always override an `ARG` instruction of the same name. Consider
893b01
  this Containerfile with an `ENV` and `ARG` instruction.
893b01
893b01
  ```
893b01
  1 FROM ubuntu
893b01
  2 ARG CONT_IMG_VER
893b01
  3 ENV CONT_IMG_VER=v1.0.0
893b01
  4 RUN echo $CONT_IMG_VER
893b01
  ```
893b01
  Then, assume this image is built with this command:
893b01
893b01
  ```
893b01
  $ podman build --build-arg CONT_IMG_VER=v2.0.1 Containerfile
893b01
  ```
893b01
893b01
  In this case, the `RUN` instruction uses `v1.0.0` instead of the `ARG` setting
893b01
  passed by the user:`v2.0.1` This behavior is similar to a shell
893b01
  script where a locally scoped variable overrides the variables passed as
893b01
  arguments or inherited from environment, from its point of definition.
893b01
893b01
  Using the example above but a different `ENV` specification you can create more
893b01
  useful interactions between `ARG` and `ENV` instructions:
893b01
893b01
  ```
893b01
  1 FROM ubuntu
893b01
  2 ARG CONT_IMG_VER
893b01
  3 ENV CONT_IMG_VER=${CONT_IMG_VER:-v1.0.0}
893b01
  4 RUN echo $CONT_IMG_VER
893b01
  ```
893b01
893b01
  Unlike an `ARG` instruction, `ENV` values are always persisted in the built
893b01
  image. Consider a `podman build` without the --build-arg flag:
893b01
893b01
  ```
893b01
  $ podman build Containerfile
893b01
  ```
893b01
893b01
  Using this Containerfile example, `CONT_IMG_VER` is still persisted in the image but
893b01
  its value would be `v1.0.0` as it is the default set in line 3 by the `ENV` instruction.
893b01
893b01
  The variable expansion technique in this example allows you to pass arguments
893b01
  from the command line and persist them in the final image by leveraging the
893b01
  `ENV` instruction. Variable expansion is only supported for [a limited set of
893b01
  Containerfile instructions.](#environment-replacement)
893b01
893b01
  Container engines have a set of predefined `ARG` variables that you can use without a
893b01
  corresponding `ARG` instruction in the Containerfile.
893b01
893b01
  * `HTTP_PROXY`
893b01
  * `http_proxy`
893b01
  * `HTTPS_PROXY`
893b01
  * `https_proxy`
893b01
  * `FTP_PROXY`
893b01
  * `ftp_proxy`
893b01
  * `NO_PROXY`
893b01
  * `no_proxy`
893b01
  * `ALL_PROXY`
893b01
  * `all_proxy`
893b01
893b01
  To use these, pass them on the command line using `--build-arg` flag, for
893b01
  example:
893b01
893b01
  ```
893b01
  $ podman build --build-arg HTTPS_PROXY=https://my-proxy.example.com .
893b01
  ```
893b01
893b01
**ONBUILD**
893b01
  -- `ONBUILD [INSTRUCTION]`
893b01
  The **ONBUILD** instruction adds a trigger instruction to an image. The
893b01
  trigger is executed at a later time, when the image is used as the base for
893b01
  another build. Container engines execute the trigger in the context of the downstream
893b01
  build, as if the trigger existed immediately after the **FROM** instruction in
893b01
  the downstream Containerfile.
893b01
893b01
  You can register any build instruction as a trigger. A trigger is useful if
893b01
  you are defining an image to use as a base for building other images. For
893b01
  example, if you are defining an application build environment or a daemon that
893b01
  is customized with a user-specific configuration.
893b01
893b01
  Consider an image intended as a reusable python application builder. It must
893b01
  add application source code to a particular directory, and might need a build
893b01
  script called after that. You can't just call **ADD** and **RUN** now, because
893b01
  you don't yet have access to the application source code, and it is different
893b01
  for each application build.
893b01
893b01
  -- Providing application developers with a boilerplate Containerfile to copy-paste
893b01
  into their application is inefficient, error-prone, and
893b01
  difficult to update because it mixes with application-specific code.
893b01
  The solution is to use **ONBUILD** to register instructions in advance, to
893b01
  run later, during the next build stage.
893b01
893b01
## SEE ALSO
893b01
buildah(1), podman(1), docker(1)
893b01
893b01
# HISTORY
893b01
```
893b01
May 2014, Compiled by Zac Dover (zdover at redhat dot com) based on docker.com Dockerfile documentation.
893b01
Feb 2015, updated by Brian Goff (cpuguy83@gmail.com) for readability
893b01
Sept 2015, updated by Sally O'Malley (somalley@redhat.com)
893b01
Oct 2016, updated by Addam Hardy (addam.hardy@gmail.com)
893b01
Aug 2021, converted Dockerfile man page to Containerfile by Dan Walsh (dwalsh@redhat.com)
893b01
```