diff --git a/docker/Dockerfile b/docker/Dockerfile index a85777b..7ef656d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,6 +4,7 @@ FROM golang:1.23.1-bookworm AS golang # Set the base image, general environment variables, and move to temp dir FROM debian:12.7 +ARG TARGETPLATFORM ENV DEBIAN_FRONTEND=noninteractive ENV PATH="$PATH:/usr/local/go/bin" WORKDIR /app/temp diff --git a/docker/Dockerfile.cicd b/docker/Dockerfile.cicd index b9aa7d7..1b4c89f 100644 --- a/docker/Dockerfile.cicd +++ b/docker/Dockerfile.cicd @@ -4,6 +4,7 @@ FROM golang:1.23.1-bookworm AS golang # Set the base image, general environment variables, and move to temp dir FROM debian:12.7 +ARG TARGETPLATFORM ENV DEBIAN_FRONTEND=noninteractive ENV PATH="$PATH:/usr/local/go/bin" WORKDIR /app/temp diff --git a/docker/Dockerfile.dev b/docker/Dockerfile.dev index 90e88cb..5b926b9 100644 --- a/docker/Dockerfile.dev +++ b/docker/Dockerfile.dev @@ -4,6 +4,7 @@ FROM golang:1.23.1-bookworm AS golang # Set the base image, general environment variables, and move to temp dir FROM debian:12.7 +ARG TARGETPLATFORM ENV DEBIAN_FRONTEND=noninteractive ENV PATH="$PATH:/usr/local/go/bin" WORKDIR /app/temp