I'm performing a custom build netboot-xyz in a drone pipeline and am receiving the following warning:
2 warnings found (use --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 3)
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 14)
Dockerfile:15
--------------------
14 | FROM netbootxyz-${NBXYZ_OVERRIDES} as final
15 | >>> RUN \
16 | >>> echo "**** running ansible ****" && \
17 | >>> cd /ansible && \
18 | >>> ansible-playbook -i inventory site.yml ${EXTRA_VARS}
19 |
I'm performing a custom build netboot-xyz in a drone pipeline and am receiving the following warning:
Can this be resolved by fixing lines: https://github.com/netbootxyz/netboot.xyz/blob/cc085a7b602d235047f438b2f8e184b753f3e6e0/Dockerfile#L3 https://github.com/netbootxyz/netboot.xyz/blob/cc085a7b602d235047f438b2f8e184b753f3e6e0/Dockerfile#L14
so that both the FROM and AS keywords are uppercase?
For context, this is my drone step:
Thanks!