yay/ci.Dockerfile

15 lines
408 B
Docker
Raw Normal View History

FROM lopsided/archlinux:latest
2020-09-07 22:02:28 +00:00
LABEL maintainer="Jguer,joaogg3 at google mail"
ENV GO111MODULE=on
WORKDIR /app
2020-11-17 15:21:44 +00:00
RUN pacman -Syu --overwrite=* --needed --noconfirm go fakeroot binutils gcc make git gettext &&\
2020-09-29 07:43:20 +00:00
rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/*
2020-09-07 22:02:28 +00:00
2020-11-17 15:21:44 +00:00
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.32.2
2020-09-07 22:02:28 +00:00
COPY go.mod .
RUN go mod download