12 lines
248 B
Docker
12 lines
248 B
Docker
FROM golang:alpine AS builder
|
|
WORKDIR /app
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o webhook ./cmd/webhook
|
|
|
|
FROM alpine:3.18
|
|
WORKDIR /app
|
|
COPY --from=builder /app/webhook .
|
|
ENTRYPOINT ["./webhook"]
|