From 3f5eb36fe2ddfc0ae3cfb13eb605d239991bc780 Mon Sep 17 00:00:00 2001 From: jguer Date: Wed, 16 Nov 2022 00:29:53 +0100 Subject: [PATCH] add gcc to build --- ci.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci.Dockerfile b/ci.Dockerfile index 0e23c93c..48b2da7e 100644 --- a/ci.Dockerfile +++ b/ci.Dockerfile @@ -5,7 +5,8 @@ WORKDIR /app COPY go.mod . -RUN pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && pacman -Su --overwrite=* --needed --noconfirm go git && \ +RUN pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && \ + pacman -Su --overwrite=* --needed --noconfirm go git gcc && \ rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* && \ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.1 && \ go mod download