mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
fdcf6ef664
* add integration test framework * fix integration tests * fix integration tests
14 lines
532 B
Docker
14 lines
532 B
Docker
FROM docker.io/jguer/yay-builder:latest
|
|
LABEL maintainer="Jguer,docker@jguer.space"
|
|
|
|
ENV GO111MODULE=on
|
|
WORKDIR /app
|
|
|
|
COPY go.mod .
|
|
|
|
RUN pacman-key --init && pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && \
|
|
pacman -Su --overwrite=* --needed --noconfirm doxygen meson asciidoc go git gcc make sudo base-devel && \
|
|
rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* && \
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.2 && \
|
|
go mod download
|