I can’t find in Dockerfile reference | Docker Docs an explicit statement whether
ENV foo=1
ENV bar=2
ENV baz=3
Is equivalent to
ENV foo=1 \
bar=2 \
baz=3
In terms of number of layers created in the final image when doing docker buildx build . It would be nice if it was explicitly written out in that document one way or the other.
I also find the first style to be readable