1
0
mirror of https://github.com/Jguer/yay synced 2024-07-09 04:46:19 +00:00

Remake ci.Dockerfile

This commit is contained in:
jguer 2022-08-05 23:05:20 +02:00
parent 1a52da5891
commit c0a9b6af4f
No known key found for this signature in database
GPG Key ID: 6D6CC9BEA8556B35

View File

@ -1,11 +1,11 @@
FROM docker.io/lopsided/archlinux:devel
FROM docker.io/jguer/yay-builder:latest
ENV GO111MODULE=on
WORKDIR /app
COPY go.mod .
RUN pacman -Syu --overwrite=* --needed --noconfirm go git && \
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.44.2 && \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.48.0 && \
go mod download