FROM golang:1.23.0-alpine3.20 ARG version RUN apk add --no-cache build-base WORKDIR /app COPY go.* ./ RUN go mod download