mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 09:07:21 +01:00
dc9bef0115
* fix(ci): fix builds against pacman-git * fix(ci): fix builds against pacman-git * update dockerfile * update dockerfile * update dockerfile * fix(ci): fix builds against pacman-git * fix(ci): fix builds against pacman-git * update go-alpm * update alpm * return to lopsided images * go mod tidy
12 lines
343 B
Docker
12 lines
343 B
Docker
FROM docker.io/lopsided/archlinux:devel
|
|
|
|
ENV GO111MODULE=on
|
|
WORKDIR /app
|
|
|
|
COPY go.mod .
|
|
|
|
RUN pacman -Syu --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 && \
|
|
go mod download
|