Skip to content

Commit 35abf6b

Browse files
authored
Images: Fix FromAsCasing. (#13117)
1 parent 46f0fd4 commit 35abf6b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

images/custom-error-pages/rootfs/Dockerfile

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

1515
ARG GOLANG_VERSION
1616

17-
FROM golang:${GOLANG_VERSION}-alpine3.21 as builder
17+
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
1818

1919
RUN apk update \
2020
&& apk upgrade && apk add git

images/ext-auth-example-authsvc/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GOLANG_VERSION
22

3-
FROM golang:${GOLANG_VERSION}-alpine3.21 as builder
3+
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
44
RUN mkdir /authsvc
55
WORKDIR /authsvc
66
COPY . ./

images/fastcgi-helloserver/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
ARG GOLANG_VERSION
1515

16-
FROM golang:${GOLANG_VERSION}-alpine3.21 as builder
16+
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
1717

1818
WORKDIR /go/src/k8s.io/ingress-nginx/images/fastcgi
1919

images/go-grpc-greeter-server/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GOLANG_VERSION
22

3-
FROM golang:${GOLANG_VERSION}-alpine3.21 as build
3+
FROM golang:${GOLANG_VERSION}-alpine3.21 AS build
44

55
WORKDIR /go/src/greeter-server
66

images/kube-webhook-certgen/rootfs/Dockerfile

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

1515
ARG GOLANG_VERSION
1616

17-
FROM --platform=$BUILDPLATFORM golang:${GOLANG_VERSION} as builder
17+
FROM --platform=$BUILDPLATFORM golang:${GOLANG_VERSION} AS builder
1818

1919
ARG BUILDPLATFORM
2020
ARG TARGETARCH

rootfs/Dockerfile-chroot

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

1515
ARG BASE_IMAGE
1616

17-
FROM ${BASE_IMAGE} as chroot
17+
FROM ${BASE_IMAGE} AS chroot
1818

1919
# This intermediary image will be used only to copy all the required files to the chroot
2020
# TODO: Simplify in a future to a single Dockerfile

0 commit comments

Comments
 (0)