yay/ci.Dockerfile
2022-11-15 14:17:56 +00:00

12 lines
415 B
Docker

FROM docker.io/heywoodlh/archlinux:latest
ENV GO111MODULE=on
WORKDIR /app
COPY go.mod .
RUN pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && pacman -Su --overwrite=* --needed --noconfirm go git && \
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