1 Star 0 Fork 0

KIE / kogito-serverless-operator-mirror

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
Dockerfile 990 Bytes
Copy Edit Raw Blame History
# Build the manager binary
FROM golang:1.19 as builder
WORKDIR /workspace
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
# Copy the go source
COPY main.go main.go
COPY api/ api/
COPY controllers/ controllers/
COPY converters/ converters/
COPY constants/ constants/
COPY builder/ builder/
COPY utils/ utils/
# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
#FROM gcr.io/distroless/static:nonroot
FROM registry.access.redhat.com/ubi8/ubi-micro:latest
WORKDIR /
COPY --from=builder /workspace/manager .
COPY --from=builder /workspace/builder/Dockerfile ./builder/
USER 65532:65532
ENTRYPOINT ["/manager"]
1
https://gitee.com/kiegroup/kogito-serverless-operator-mirror.git
git@gitee.com:kiegroup/kogito-serverless-operator-mirror.git
kiegroup
kogito-serverless-operator-mirror
kogito-serverless-operator-mirror
1.30.x

Search