yay/ci.Dockerfile

14 lines
341 B
Docker
Raw Normal View History

FROM lopsided/archlinux:latest
2020-09-08 00:02:28 +02:00
LABEL maintainer="Jguer,joaogg3 at google mail"
ENV GO111MODULE=on
WORKDIR /app
RUN pacman -Syu --overwrite=* --needed --noconfirm go fakeroot binutils gcc make git
2020-09-08 00:02:28 +02:00
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.31.0
2020-09-08 00:02:28 +02:00
COPY go.mod .
RUN go mod download