Skip to content

Images: Fix FromAsCasing. #13117

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Mar 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion images/custom-error-pages/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

ARG GOLANG_VERSION

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

RUN apk update \
&& apk upgrade && apk add git
Expand Down
2 changes: 1 addition & 1 deletion images/ext-auth-example-authsvc/rootfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG GOLANG_VERSION

FROM golang:${GOLANG_VERSION}-alpine3.21 as builder
FROM golang:${GOLANG_VERSION}-alpine3.21 AS builder
RUN mkdir /authsvc
WORKDIR /authsvc
COPY . ./
Expand Down
2 changes: 1 addition & 1 deletion images/fastcgi-helloserver/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
ARG GOLANG_VERSION

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

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

Expand Down
2 changes: 1 addition & 1 deletion images/go-grpc-greeter-server/rootfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG GOLANG_VERSION

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

WORKDIR /go/src/greeter-server

Expand Down
2 changes: 1 addition & 1 deletion images/kube-webhook-certgen/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

ARG GOLANG_VERSION

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

ARG BUILDPLATFORM
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion rootfs/Dockerfile-chroot
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

ARG BASE_IMAGE

FROM ${BASE_IMAGE} as chroot
FROM ${BASE_IMAGE} AS chroot

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