diff --git a/src/content/docs/workers/wrangler/configuration.mdx b/src/content/docs/workers/wrangler/configuration.mdx index 1ee305201b75c32..a280c803ffd0be0 100644 --- a/src/content/docs/workers/wrangler/configuration.mdx +++ b/src/content/docs/workers/wrangler/configuration.mdx @@ -1078,8 +1078,8 @@ The following options are available: - `image` - - The image to use for the container. This can either be a local path, in which case `wrangler deploy` will - build and push the image. Or it can be an image URL. Currently, only the Cloudflare Registry is a supported registry. + - The image to use for the container. This can either be a local path to a `Dockerfile`, in which case `wrangler deploy` will + build and push the image, or it can be an image URL. Currently, only the Cloudflare Registry is a supported registry. - `class_name` @@ -1110,9 +1110,8 @@ The following options are available: - The build context of the application, by default it is the directory of `image`. - `image_vars` + - Build-time variables, equivalent to using `--build-arg` with `docker build`. If you want to provide environment variables to your container at _runtime_, you should [use secret bindings or `envVars` on the Container class](/containers/examples/env-vars-and-secrets/). - - Environment variables to set in the container. These will be used during the build phase and will be defaults - when running the container, though they can be overridden at runtime when starting the container.