# WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES. # ONLY EDIT THIS FILE FROM WITHIN THE 'FLYTEORG/BOILERPLATE' REPOSITORY: # # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst FROM --platform=${BUILDPLATFORM} golang:1.22-alpine3.18 AS builder ARG TARGETARCH ENV GOARCH="${TARGETARCH}" ENV GOOS=linux RUN apk add git openssh-client make curl # Create the artifacts directory RUN mkdir /artifacts # Pull GRPC health probe binary for liveness and readiness checks RUN GRPC_HEALTH_PROBE_VERSION=v0.4.25 && \ wget -qO/artifacts/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \ chmod +x /artifacts/grpc_health_probe && \ echo 'd14037ad94518eac8dbe57c146d6c2ca808f7f32600ee0c4057ef4b03ee0e42e /artifacts/grpc_health_probe' > .grpc_checksum && \ sha256sum -c .grpc_checksum WORKDIR /go/src/github.com/flyteorg/datacatalog COPY boilerplate ../boilerplate COPY datacatalog . COPY flyteadmin ../flyteadmin COPY flytecopilot ../flytecopilot COPY flyteidl ../flyteidl COPY flyteplugins ../flyteplugins COPY flytepropeller ../flytepropeller COPY flytestdlib ../flytestdlib # This 'linux_compile' target should compile binaries to the /artifacts directory # The main entrypoint should be compiled to /artifacts/datacatalog RUN make linux_compile # update the PATH to include the /artifacts directory ENV PATH="/artifacts:${PATH}" # This will eventually move to centurylink/ca-certs:latest for minimum possible image size FROM alpine:3.18 LABEL org.opencontainers.image.source=https://github.com/flyteorg/datacatalog COPY --from=builder /artifacts /bin # Ensure the latest CA certs are present to authenticate SSL connections. RUN apk --update add ca-certificates RUN addgroup -S flyte && adduser -S flyte -G flyte USER flyte CMD ["datacatalog"]