ENV key=value should be used instead of the legacy ENV key value format.
Description
The correct format for declaring environment variables and build arguments in a Dockerfile isENV key=value and ARG key=value, where the variable name and
value are separated by an equals sign. Historically, Dockerfiles have also
supported a space separator. This legacy format is deprecated.