linkerd / linkerd2

Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x.
https://linkerd.io
Apache License 2.0
10.72k stars 1.28k forks source link

lint: fix docker build warnings #13351

Closed DerekTBrown closed 1 week ago

DerekTBrown commented 1 week ago

Commit Message:

    lint: fix docker build warnings

    Docker builds emit a warning because the case of 'FROM' and 'as' don't match. Fix this everywhere.

    Signed-off-by: Derek Brown <6845676+DerekTBrown@users.noreply.github.com>

Context:

When running Docker builds, I see the following warning:

 => WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)     
...                                                                                                                                                    
 => WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 27)    

Fix this pattern everywhere.