Skip to content

Commit 6b055c4

Browse files
TCNOcothresheek
authored andcommitted
Fix FromAsCasing
Docker complains about FROM ${NGINX_FROM_IMAGE} as builder because `'as' and 'FROM' keywords' casing do not match` [info](https://docs.docker.com/reference/build-checks/from-as-casing/). Super simple fix. Absolutely a minor fix, but it's one less warning.
1 parent 1503705 commit 6b055c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG NGINX_FROM_IMAGE=nginx:mainline
2-
FROM ${NGINX_FROM_IMAGE} as builder
2+
FROM ${NGINX_FROM_IMAGE} AS builder
33

44
ARG ENABLED_MODULES
55

0 commit comments

Comments
 (0)