This repository contains the sources for the following docker base images:
This Image is intended to be used in multi-stage docker builds and is not for final or production use, you can find more info about multi-stage build in this blog post
FROM kitabisa/alpine-golang-buildimage
ADD . /go/src/github.com/kitabisa/test
WORKDIR /go/src/github.com/kitabisa/test
RUN go build *.go
# Pull image
git clone https://github.com/kitabisa/alpine-golang-buildimage.git
cd alpine-golang-buildimage
# hack hack hack
# Build
make build