fix(ci): fix CI issues

This commit is contained in:
jguer
2020-09-08 00:02:28 +02:00
parent 5ae510ad6f
commit 8a0a0cf2bc
4 changed files with 43 additions and 8 deletions

13
ci.Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM lopsided/archlinux:devel
LABEL maintainer="Jguer,joaogg3 at google mail"
ENV GO111MODULE=on
WORKDIR /app
RUN pacman -Syu --overwrite=* --needed --noconfirm go git
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.30.0
COPY go.mod .
RUN go mod download