From 9ad6094a5dc280f568927768415545173636fb65 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 29 Sep 2022 00:51:51 +0200 Subject: [PATCH] build/bot: try installing gcc-multilib in linux container --- build/bot/Dockerfile.linux | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/bot/Dockerfile.linux b/build/bot/Dockerfile.linux index 3a489abecb..51479e44f8 100644 --- a/build/bot/Dockerfile.linux +++ b/build/bot/Dockerfile.linux @@ -1,5 +1,9 @@ FROM golang:1.19.1 +# Install build tools. +RUN apt-get update +RUN apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib g++-multilib + # The repo checkout is mounted to /source. WORKDIR /source @@ -9,4 +13,4 @@ RUN git config --global --add safe.directory /source # Configure Go tool cache locations ENV GOPATH=/cache/go ENV GOCACHE=/cache/go/cache -ENV GOMODCACHE=/cache/go/modcache \ No newline at end of file +ENV GOMODCACHE=/cache/go/modcache