Initialize golang build image
This commit is contained in:
commit
9d4149d8a2
17
.drone.yml
Normal file
17
.drone.yml
Normal 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
25
Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user