From b7233d12388f8b924b5147b7a2545a8272cc2ab8 Mon Sep 17 00:00:00 2001 From: Lavi Blumberg Date: Mon, 24 Apr 2023 11:32:59 -0400 Subject: [PATCH] Properly emulated arm64 Docker builds (#826) Signed-off-by: Lavi Blumberg --- Dockerfile | 2 +- Dockerfile.debian-stable-slim | 2 +- Dockerfile.ubuntu | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0666c2af..c388d3ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN make static-${TARGETOS}-${TARGETARCH} # ----------------------------------------------------------------------------- -FROM --platform=$BUILDPLATFORM alpine:3.16 +FROM alpine:3.16 LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index b2f5211a..1b3621bf 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -12,7 +12,7 @@ RUN make static-${TARGETOS}-${TARGETARCH} # ----------------------------------------------------------------------------- -FROM --platform=$BUILDPLATFORM debian:stable-slim +FROM debian:stable-slim LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index b11de29d..dfb7d330 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -12,7 +12,7 @@ RUN make static-${TARGETOS}-${TARGETARCH} # ----------------------------------------------------------------------------- -FROM --platform=$BUILDPLATFORM ubuntu:20.04 +FROM ubuntu:20.04 LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile