FROM golang:1.24-alpine AS builder WORKDIR /app COPY shared/ ./shared/ COPY purchaser-service/ ./purchaser-service/ WORKDIR /app/purchaser-service RUN go build -o /purchaser-service ./cmd/ FROM alpine:3.20 RUN apk add --no-cache wget COPY --from=builder /purchaser-service /purchaser-service EXPOSE 8082 CMD ["/purchaser-service"]