First go at Docker builds

This commit is contained in:
Ian Fijolek
2019-10-10 17:20:42 -07:00
parent 05c0e18c37
commit 1f6193e486
3 changed files with 41 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
ARG REPO=library
FROM golang:1.12-alpine AS builder
RUN apk add --no-cache git
RUN mkdir /app
WORKDIR /app
COPY ./go.mod ./go.sum /app/
RUN go mod download
COPY ./*.go /app/
ARG ARCH=amd64
ARG VERSION=dev
ENV CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH}
RUN go build -ldflags "-X main.version=${VERSION}" -a -installsuffix nocgo -o minitor .
FROM ${REPO}/busybox:latest
WORKDIR /root/
COPY --from=builder /app/minitor .
ENTRYPOINT [ "./minitor" ]