build/bot: try installing gcc-multilib in linux container

This commit is contained in:
Felix Lange 2022-09-29 00:51:51 +02:00
parent c591acb765
commit 9ad6094a5d
1 changed files with 5 additions and 1 deletions

View File

@ -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
ENV GOMODCACHE=/cache/go/modcache