gots-notify/Dockerfile

14 lines
307 B
Text
Raw Permalink Normal View History

2025-07-01 20:28:36 +02:00
FROM golang:1.24-alpine AS builder
RUN apk add --no-cache git
WORKDIR /app
COPY go.mod ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o gots-notify .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY --from=builder /app/gots-notify .
CMD ["./gots-notify"]