this repo has no description
1FROM golang:latest AS builder 2 3WORKDIR /app 4 5COPY . . 6RUN go mod download 7 8RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=5 go build -a -installsuffix cgo -o tangled-alert-bot . 9 10FROM alpine:latest 11 12RUN apk --no-cache add ca-certificates 13 14WORKDIR /root/ 15COPY --from=builder /app/tangled-alert-bot . 16 17CMD ["./tangled-alert-bot"]