2021-01-15 17:23:36 +00:00
|
|
|
# syntax = docker/dockerfile:1.0-experimental
|
|
|
|
|
2021-01-07 21:20:25 +00:00
|
|
|
# Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
2020-08-09 17:04:05 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-10-08 01:03:52 +00:00
|
|
|
FROM golang:1.17.2 as build-env
|
2020-07-17 03:52:53 +00:00
|
|
|
|
2020-07-06 23:54:04 +00:00
|
|
|
WORKDIR /work
|
2021-01-15 17:23:36 +00:00
|
|
|
COPY . .
|
|
|
|
ARG GOPROXY
|
2020-08-12 20:57:27 +00:00
|
|
|
|
2020-08-06 00:43:24 +00:00
|
|
|
# Build the executable binary (CGO_ENABLED=0 means static linking)
|
2021-01-15 17:23:36 +00:00
|
|
|
# Pass in GOCACHE (build cache) and GOMODCACHE (module cache) so they
|
|
|
|
# can be re-used between image builds.
|
|
|
|
RUN \
|
|
|
|
--mount=type=cache,target=/cache/gocache \
|
|
|
|
--mount=type=cache,target=/cache/gomodcache \
|
|
|
|
mkdir out && \
|
2021-07-26 16:18:43 +00:00
|
|
|
export GOCACHE=/cache/gocache GOMODCACHE=/cache/gomodcache CGO_ENABLED=0 GOOS=linux GOARCH=amd64 && \
|
|
|
|
go build -v -ldflags "$(hack/get-ldflags.sh) -w -s" -o /usr/local/bin/pinniped-concierge-kube-cert-agent ./cmd/pinniped-concierge-kube-cert-agent/main.go && \
|
|
|
|
go build -v -ldflags "$(hack/get-ldflags.sh) -w -s" -o /usr/local/bin/pinniped-server ./cmd/pinniped-server/main.go && \
|
|
|
|
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.
|
2021-09-30 17:09:57 +00:00
|
|
|
FROM gcr.io/distroless/static:nonroot@sha256:07869abb445859465749913267a8c7b3b02dc4236fbc896e29ae859e4b360851
|
2021-07-26 16:18:43 +00:00
|
|
|
|
|
|
|
# Copy the server binary from the build-env stage.
|
|
|
|
COPY --from=build-env /usr/local/bin /usr/local/bin
|
2020-08-12 20:57:27 +00:00
|
|
|
|
2020-11-02 16:57:05 +00:00
|
|
|
# Document the ports
|
|
|
|
EXPOSE 8080 8443
|
|
|
|
|
|
|
|
# Run as non-root for security posture
|
|
|
|
USER 1001:1001
|
2020-08-12 20:57:27 +00:00
|
|
|
|
|
|
|
# Set the entrypoint
|
2021-07-26 16:18:43 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/pinniped-server"]
|