From f08d20560b7e1864044484a6b62547d1fe978f5c Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 25 Jun 2020 15:15:16 -0700 Subject: [PATCH] stretch has mips golang 1.11 in backports don't know if it'll work though --- dockerbuild/Dockerfile.debian-stretch | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dockerbuild/Dockerfile.debian-stretch b/dockerbuild/Dockerfile.debian-stretch index 2b0fdb758..206555740 100644 --- a/dockerbuild/Dockerfile.debian-stretch +++ b/dockerbuild/Dockerfile.debian-stretch @@ -7,6 +7,8 @@ ARG TARGETPLATFORM RUN apt-get update && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd libssl-dev RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \ + cat "deb http://deb.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/backports.list; \ + apt-get update; \ apt-get install -y golang; \ else \ curl -s -k $go_pkg_url -o go.tar.gz; \