2022-03-31 14:48:52 -04:00
|
|
|
# syntax=docker/dockerfile:1
|
2021-01-15 11:23:36 -06:00
|
|
|
|
2023-02-14 11:19:27 -06:00
|
|
|
# Copyright 2020-2023 the Pinniped contributors. All Rights Reserved.
|
2020-08-09 10:04:05 -07:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-10-03 10:12:25 -07:00
|
|
|
# Prepare to cross-compile by always running the build stage in the build platform, not the target platform.
|
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.21.1 as build-env
|
2020-07-16 23:52:53 -04:00
|
|
|
|
2020-07-06 16:54:04 -07:00
|
|
|
WORKDIR /work
|
2023-10-03 10:12:25 -07:00
|
|
|
|
2021-01-15 11:23:36 -06:00
|
|
|
ARG GOPROXY
|
2020-08-12 15:57:27 -05:00
|
|
|
|
2023-08-28 11:54:27 -05:00
|
|
|
ARG KUBE_GIT_VERSION
|
|
|
|
ENV KUBE_GIT_VERSION=$KUBE_GIT_VERSION
|
|
|
|
|
2023-10-03 10:12:25 -07:00
|
|
|
# These will be set by buildkit automatically, e.g. TARGETOS set to "linux" and TARGETARCH set to "amd64" or "arm64".
|
|
|
|
# Useful for building multi-arch container images.
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
# Build the statically linked (CGO_ENABLED=0) binary.
|
|
|
|
# Mount source, build cache, and module cache for performance reasons.
|
|
|
|
# See https://www.docker.com/blog/faster-multi-platform-builds-dockerfile-cross-compilation-guide/
|
2021-01-15 11:23:36 -06:00
|
|
|
RUN \
|
2023-10-03 10:12:25 -07:00
|
|
|
--mount=target=. \
|
2021-01-15 11:23:36 -06:00
|
|
|
--mount=type=cache,target=/cache/gocache \
|
|
|
|
--mount=type=cache,target=/cache/gomodcache \
|
2023-10-03 10:12:25 -07:00
|
|
|
export GOCACHE=/cache/gocache GOMODCACHE=/cache/gomodcache CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH && \
|
2021-11-03 10:26:13 -04:00
|
|
|
go build -v -trimpath -ldflags "$(hack/get-ldflags.sh) -w -s" -o /usr/local/bin/pinniped-concierge-kube-cert-agent ./cmd/pinniped-concierge-kube-cert-agent/... && \
|
|
|
|
go build -v -trimpath -ldflags "$(hack/get-ldflags.sh) -w -s" -o /usr/local/bin/pinniped-server ./cmd/pinniped-server/... && \
|
2021-07-26 11:18:43 -05:00
|
|
|
ln -s /usr/local/bin/pinniped-server /usr/local/bin/pinniped-concierge && \
|
|
|
|
ln -s /usr/local/bin/pinniped-server /usr/local/bin/pinniped-supervisor && \
|
|
|
|
ln -s /usr/local/bin/pinniped-server /usr/local/bin/local-user-authenticator
|
|
|
|
|
|
|
|
# Use a distroless runtime image with CA certificates, timezone data, and not much else.
|
2023-10-03 10:12:25 -07:00
|
|
|
# Note that we are not using --platform here, so it will choose the base image for the target platform, not the build platform.
|
|
|
|
# By using "distroless/static" instead of "distroless/static-debianXX" we can float on the latest stable version of debian.
|
|
|
|
# See https://github.com/GoogleContainerTools/distroless#base-operating-system
|
2022-09-23 14:41:54 -07:00
|
|
|
FROM gcr.io/distroless/static:nonroot@sha256:2a9e2b4fa771d31fe3346a873be845bfc2159695b9f90ca08e950497006ccc2e
|
2021-07-26 11:18:43 -05:00
|
|
|
|
|
|
|
# Copy the server binary from the build-env stage.
|
|
|
|
COPY --from=build-env /usr/local/bin /usr/local/bin
|
2020-08-12 15:57:27 -05:00
|
|
|
|
2021-11-16 16:43:51 -08:00
|
|
|
# Document the default server ports for the various server apps
|
2022-03-24 15:46:10 -07:00
|
|
|
EXPOSE 8443 8444 10250
|
2020-11-02 11:57:05 -05:00
|
|
|
|
|
|
|
# Run as non-root for security posture
|
2021-10-25 16:21:54 -04:00
|
|
|
# Use the same non-root user as https://github.com/GoogleContainerTools/distroless/blob/fc3c4eaceb0518900f886aae90407c43be0a42d9/base/base.bzl#L9
|
|
|
|
# This is a workaround for https://github.com/GoogleContainerTools/distroless/issues/718
|
|
|
|
USER 65532:65532
|
2020-08-12 15:57:27 -05:00
|
|
|
|
|
|
|
# Set the entrypoint
|
2021-07-26 11:18:43 -05:00
|
|
|
ENTRYPOINT ["/usr/local/bin/pinniped-server"]
|