add make to dockerfile

This commit is contained in:
jguer 2022-11-16 00:54:21 +01:00
parent 085e2c8aea
commit 5e8d9ac846
No known key found for this signature in database
GPG key ID: 6D6CC9BEA8556B35
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
FROM jguer/yay-builder:latest
FROM docker.io/jguer/yay-builder:latest
LABEL maintainer="Jguer,joaogg3 at google mail"
ARG VERSION

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