diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-07-15 15:34:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 15:34:46 +0200 |
commit | fa7423819aae9d056ba844abceb8626fe0c5d81e (patch) | |
tree | 99bf6e4ab4de411ac1a3c1045507621c80b2d13b /tools | |
parent | Fix task ending in error due to bad iterator (#15355) (diff) | |
download | awx-fa7423819aae9d056ba844abceb8626fe0c5d81e.tar.xz awx-fa7423819aae9d056ba844abceb8626fe0c5d81e.zip |
Fix minor docker build warning (#15362)
Fix docker build warning
Fix
```
WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 8)
```
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ansible/roles/dockerfile/templates/Dockerfile.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ansible/roles/dockerfile/templates/Dockerfile.j2 b/tools/ansible/roles/dockerfile/templates/Dockerfile.j2 index 90046482c0..2ea6522510 100644 --- a/tools/ansible/roles/dockerfile/templates/Dockerfile.j2 +++ b/tools/ansible/roles/dockerfile/templates/Dockerfile.j2 @@ -5,7 +5,7 @@ ### # Build container -FROM quay.io/centos/centos:stream9 as builder +FROM quay.io/centos/centos:stream9 AS builder ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en |