Files
2025-12-26 13:38:04 +01:00

17 lines
277 B
Docker

FROM docker.io/golang:1.22-alpine AS builder
WORKDIR /app
COPY main.go .
RUN go build -o webhook-receiver main.go
FROM docker.io/alpine:latest
RUN apk add --no-cache bash git
WORKDIR /app
COPY --from=builder /app/webhook-receiver .
EXPOSE 9110
CMD ["./webhook-receiver"]