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