10 lines
253 B
Docker
10 lines
253 B
Docker
FROM golang:1.17.5-alpine3.15 AS Builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN go mod download -x
|
|
RUN GOOS=linux GOARCH=amd64 go build -o webhook
|
|
|
|
FROM alpine:3.15
|
|
LABEL maintainer "soulteary <soulteary@gmail.com>"
|
|
COPY --from=builder /app/webhook /bin/
|
|
CMD webhook |