Skip to content
Snippets Groups Projects
Commit 6b055c47 authored by Wesley Pyburn's avatar Wesley Pyburn Committed by Konstantin Pavlov
Browse files

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.
parent 15037056
Branches
Tags
No related merge requests found
ARG NGINX_FROM_IMAGE=nginx:mainline
FROM ${NGINX_FROM_IMAGE} as builder
FROM ${NGINX_FROM_IMAGE} AS builder
ARG ENABLED_MODULES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment