Skip to content

Commit

Permalink
fix(build): correctly set manifest for multiarch images (#11809) (#11812
Browse files Browse the repository at this point in the history
)

Behaviour change from #11594

Fix KAG-2855
Fix #11776

(cherry picked from commit a3c249d)

Co-authored-by: Wangchong Zhou <[email protected]>
  • Loading branch information
team-gateway-bot and fffonion authored Oct 24, 2023
1 parent a612c51 commit fe269ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/dockerfiles/apk.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG KONG_BASE_IMAGE=alpine:3.16
FROM $KONG_BASE_IMAGE
FROM --platform=$TARGETPLATFORM $KONG_BASE_IMAGE

LABEL maintainer="Kong Docker Maintainers <[email protected]> (@team-gateway-bot)"

Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/deb.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG KONG_BASE_IMAGE=debian:bullseye-slim
FROM $KONG_BASE_IMAGE
FROM --platform=$TARGETPLATFORM $KONG_BASE_IMAGE

LABEL maintainer="Kong Docker Maintainers <[email protected]> (@team-gateway-bot)"

Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/rpm.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG KONG_BASE_IMAGE=redhat/ubi8
FROM $KONG_BASE_IMAGE
FROM --platform=$TARGETPLATFORM $KONG_BASE_IMAGE

LABEL maintainer="Kong Docker Maintainers <[email protected]> (@team-gateway-bot)"

Expand Down

0 comments on commit fe269ab

Please sign in to comment.