leozz37/cartesian

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
# Use the offical Golang image to create a build artifact.
FROM golang:1.12 as builder

# Copy local code to the container image.
WORKDIR /go/app
COPY . .

# Build the command inside the container.
RUN CGO_ENABLED=0 GOOS=linux go build -v -o app main.go

# Use a Docker multi-stage build to create a lean production image.
FROM gcr.io/distroless/base
COPY --from=builder /go/app/ .

# Run the service binary.
CMD ["/app"]