# Dockerfile for CI builds.
FROM docker.internal.justin.tv/devtools/bionic/go1.13.3:latest

RUN apt-get update && \
    apt-get install zip -y

# Install golangci-lint: https://github.com/golangci/golangci-lint
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.21.0
RUN golangci-lint --version
