blob: 61bfa3ba4f30bb72e4d3fe3d847192a177c7b82b [file] [log] [blame]
Adrià Vilanova Martínez2d0ec8d2022-01-20 18:45:52 +01001FROM golang:latest as builder
2
3ENV CGO_ENABLED=0
4
5ENV GO111MODULE=on
6ENV GOPROXY=https://proxy.golang.org
7
8RUN mkdir /gocache
9ENV GOCACHE /gocache
10
11WORKDIR /go/src/gomodules.avm99963.com/hgu-sipsettings-reverter
12COPY . /go/src/gomodules.avm99963.com/hgu-sipsettings-reverter
13
14RUN go install gomodules.avm99963.com/hgu-sipsettings-reverter
15
16FROM alpine
17LABEL maintainer "me@avm99963.com"
18
19RUN apk add --no-cache tini
20COPY --from=builder /go/bin/hgu-sipsettings-reverter /
21ENTRYPOINT ["/sbin/tini", "--", "/hgu-sipsettings-reverter"]