Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 833 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 833 Bytes

alpine-golang-buildimage

This repository contains the sources for the following docker base images:

Usage

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

Developing and build

# Pull image
git clone https://github.com/kitabisa/alpine-golang-buildimage.git
cd alpine-golang-buildimage

# hack hack hack

# Build
make build