Browse Source

add make to dockerfile

jguer 2 years ago
parent
commit
5e8d9ac846
2 changed files with 3 additions and 3 deletions
  1. 1 1
      Dockerfile
  2. 2 2
      ci.Dockerfile

+ 1 - 1
Dockerfile

@@ -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

+ 2 - 2
ci.Dockerfile

@@ -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