FROM golang:1.23 WORKDIR /app COPY main.go go.mod go.sum config /app/ RUN go build -v ./ CMD ["/app/main"]