add make to dockerfile

This commit is contained in:
jguer
2022-11-16 00:54:21 +01:00
parent 085e2c8aea
commit 5e8d9ac846
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM docker.io/heywoodlh/archlinux:latest
FROM docker.io/jguer/yay-builder:latest
ENV GO111MODULE=on
WORKDIR /app
@@ -6,7 +6,7 @@ WORKDIR /app
COPY go.mod .
RUN pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && \
pacman -Su --overwrite=* --needed --noconfirm go git gcc && \
pacman -Su --overwrite=* --needed --noconfirm go git gcc make && \
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