Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resolve warnings about casing in Dockerfiles (#688)
I've been seeing this build warning in logs here: ```text 2 warnings found (use --debug to expand): - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 37) - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 70) ``` ([example build link](https://github.com/rapidsai/docker/actions/runs/9773984230/job/26981297565#step:9:826)) That comes from BuildKit's build checks (https://docs.docker.com/reference/build-checks/). Details on that specific warning: https://docs.docker.com/reference/build-checks/from-as-casing/. This fixes it, to remove a source of noise in logs (and because I agree with the suggestion that capitalizing keywords approves readability a bit). Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) URL: #688
- Loading branch information