Initialize golang build image

This commit is contained in:
Anton Zadvorny 2019-02-02 15:04:44 +03:00
commit 9d4149d8a2
2 changed files with 42 additions and 0 deletions

17
.drone.yml Normal file
View File

@ -0,0 +1,17 @@
kind: pipeline
name: default
clone:
depth: 50
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: r.pkg.cx
repo: r.pkg.cx/build/go
auto_tag: true

25
Dockerfile Normal file
View File

@ -0,0 +1,25 @@
FROM golang:1.11-alpine
ENV TZ=Europe/Moscow
ENV TERM=xterm-color
ENV CGO_ENABLED=0
ENV GOOS=linux
ENV GOARCH=amd64
ENV GOLANGCI=1.13
RUN \
apk add --no-cache --update bash curl git tzdata && \
rm -rf /var/cache/apk/*
RUN \
cp /usr/share/zoneinfo/${TZ} /etc/localtime && \
echo "${TZ}" > /etc/timezone && date
RUN \
go get -u -v github.com/golangci/golangci-lint/cmd/golangci-lint && \
cd /go/src/github.com/golangci/golangci-lint && \
git checkout v${GOLANGCI} && \
cd /go/src/github.com/golangci/golangci-lint/cmd/golangci-lint && \
go install -ldflags "-X 'main.version=$(git describe --tags)' -X 'main.commit=$(git rev-parse --short HEAD)' -X 'main.date=$(date)'" && \
go version && \
golangci-lint --version