iperf3exporter/vendor/github.com/tommy-muehle/go-mnd/v2/Dockerfile
Marvin Preuss 2343c9588a
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
first commit
2021-10-20 10:08:56 +02:00

18 lines
464 B
Docker

ARG GO_VERSION=1.15
FROM golang:${GO_VERSION}-alpine AS builder
RUN apk add --update --no-cache make git curl gcc libc-dev
RUN mkdir -p /build
WORKDIR /build
COPY . /build/
RUN go mod download
RUN go build -o go-mnd cmd/mnd/main.go
FROM golang:${GO_VERSION}-alpine
RUN apk add --update --no-cache bash git gcc libc-dev
COPY --from=builder /build/go-mnd /bin/go-mnd
COPY entrypoint.sh /bin/entrypoint.sh
VOLUME /app
WORKDIR /app
ENTRYPOINT ["/bin/entrypoint.sh"]