Skip to content

Commit ea3f5fa

Browse files
committed
style: fix warning during docker build
by addressing the warning below. ``` make container ... 2 warnings found (use --debug to expand): - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 3) ```
1 parent fb28420 commit ea3f5fa

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
@@ -1,6 +1,6 @@
11
ARG GOVERSION=1.23
22
ARG GOARCH
3-
FROM golang:${GOVERSION} as builder
3+
FROM golang:${GOVERSION} AS builder
44
ARG GOARCH
55
ENV GOARCH=${GOARCH}
66
WORKDIR /go/src/k8s.io/kube-state-metrics/

0 commit comments

Comments
 (0)