image-checker/Dockerfile

14 lines
313 B
Text
Raw Normal View History

2025-07-17 02:35: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 image-checker .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY --from=builder /app/image-checker .
CMD ["./image-checker"]