Difference between revisions of "Containerfile"
From John Freier
(Created page with "Containerfile and Dockerfile are interchangeable for the most part. == ENV == To set an environment variable. ENV EXAMPLE=/opt/example ENV APP_PROFILE=dev") |
|||
Line 1: | Line 1: | ||
Containerfile and Dockerfile are interchangeable for the most part. | Containerfile and Dockerfile are interchangeable for the most part. | ||
+ | |||
+ | OCI prefers the generic term Containerfile. | ||
== ENV == | == ENV == |
Revision as of 11:54, 17 January 2023
Containerfile and Dockerfile are interchangeable for the most part.
OCI prefers the generic term Containerfile.
ENV
To set an environment variable.
ENV EXAMPLE=/opt/example ENV APP_PROFILE=dev