ci.Dockerfile 341 B

12345678910111213
  1. FROM lopsided/archlinux:latest
  2. LABEL maintainer="Jguer,joaogg3 at google mail"
  3. ENV GO111MODULE=on
  4. WORKDIR /app
  5. RUN pacman -Syu --overwrite=* --needed --noconfirm go fakeroot binutils gcc make git
  6. RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.31.0
  7. COPY go.mod .
  8. RUN go mod download