blob: 61bfa3ba4f30bb72e4d3fe3d847192a177c7b82b [file] [log] [blame]
FROM golang:latest as builder
ENV CGO_ENABLED=0
ENV GO111MODULE=on
ENV GOPROXY=https://proxy.golang.org
RUN mkdir /gocache
ENV GOCACHE /gocache
WORKDIR /go/src/gomodules.avm99963.com/hgu-sipsettings-reverter
COPY . /go/src/gomodules.avm99963.com/hgu-sipsettings-reverter
RUN go install gomodules.avm99963.com/hgu-sipsettings-reverter
FROM alpine
LABEL maintainer "me@avm99963.com"
RUN apk add --no-cache tini
COPY --from=builder /go/bin/hgu-sipsettings-reverter /
ENTRYPOINT ["/sbin/tini", "--", "/hgu-sipsettings-reverter"]