logginghandler/vendor/github.com/tommy-muehle/go-mnd/v2/Dockerfile
Marvin Preuss d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
build: uses go modules for tool handling
2022-01-14 13:51:56 +01: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"]