Skip to content

Commit 0b95850

Browse files
committed
mirror: Fix lint error in Dockerfile (case on "as" keyword)
We get the following lint warning on GitHub Pull Requests: The 'as' keyword should match the case of the 'from' keyword FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/ Let's fix it. Signed-off-by: Quentin Monnet <[email protected]>
1 parent 6180da5 commit 0b95850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# hadolint global ignore=DL3008
77

8-
FROM ubuntu:22.04 as builder
8+
FROM ubuntu:22.04 AS builder
99

1010
RUN \
1111
export DEBIAN_FRONTEND=noninteractive && \

0 commit comments

Comments
 (0)