2020-08-09 17:04:05 +00:00
|
|
|
# Copyright 2020 VMware, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-08-14 15:52:29 +00:00
|
|
|
FROM golang:1.15.0 as build-env
|
2020-07-17 03:52:53 +00:00
|
|
|
|
|
|
|
# It is important that these ARG's are defined after the FROM statement
|
|
|
|
ARG ACCESS_TOKEN_USR="nothing"
|
|
|
|
ARG ACCESS_TOKEN_PWD="nothing"
|
|
|
|
|
|
|
|
# Create a netrc file using the credentials specified using --build-arg
|
|
|
|
RUN printf "machine github.com\n\
|
|
|
|
login ${ACCESS_TOKEN_USR}\n\
|
|
|
|
password ${ACCESS_TOKEN_PWD}\n\
|
|
|
|
\n\
|
|
|
|
machine api.github.com\n\
|
|
|
|
login ${ACCESS_TOKEN_USR}\n\
|
|
|
|
password ${ACCESS_TOKEN_PWD}\n"\
|
2020-08-12 20:57:27 +00:00
|
|
|
>> /root/.netrc && chmod 600 /root/.netrc && mkdir /work && mkdir /work/out
|
2020-07-06 23:54:04 +00:00
|
|
|
WORKDIR /work
|
|
|
|
# Get dependencies first so they can be cached as a layer
|
2020-08-12 20:57:27 +00:00
|
|
|
COPY go.* ./
|
|
|
|
COPY pkg/client/go.* ./pkg/client/
|
2020-08-24 19:30:45 +00:00
|
|
|
COPY generated/1.19/apis/go.* ./generated/1.19/apis/
|
|
|
|
COPY generated/1.19/client/go.* ./generated/1.19/client/
|
2020-07-06 23:54:04 +00:00
|
|
|
RUN go mod download
|
2020-08-12 20:57:27 +00:00
|
|
|
|
2020-07-23 15:05:21 +00:00
|
|
|
# Copy only the production source code to avoid cache misses when editing other files
|
2020-08-24 19:30:45 +00:00
|
|
|
COPY generated ./generated
|
2020-07-23 15:05:21 +00:00
|
|
|
COPY cmd ./cmd
|
|
|
|
COPY internal ./internal
|
|
|
|
COPY pkg ./pkg
|
|
|
|
COPY tools ./tools
|
|
|
|
COPY hack ./hack
|
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)
|
2020-08-20 17:54:15 +00:00
|
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "$(hack/get-ldflags.sh)" -o out ./cmd/pinniped-server/...
|
2020-07-06 23:54:04 +00:00
|
|
|
|
2020-08-12 20:57:27 +00:00
|
|
|
|
|
|
|
# Use a runtime image based on Debian slim
|
2020-08-14 15:52:29 +00:00
|
|
|
FROM debian:10.5-slim
|
2020-08-12 20:57:27 +00:00
|
|
|
|
2020-07-06 23:54:04 +00:00
|
|
|
# Copy the binary from the build-env stage
|
2020-08-20 17:54:15 +00:00
|
|
|
COPY --from=build-env /work/out/pinniped-server /usr/local/bin/pinniped-server
|
2020-08-12 20:57:27 +00:00
|
|
|
|
2020-07-06 23:54:04 +00:00
|
|
|
# Document the port
|
2020-07-23 15:05:21 +00:00
|
|
|
EXPOSE 443
|
2020-08-12 20:57:27 +00:00
|
|
|
|
|
|
|
# Set the entrypoint
|
2020-08-20 17:54:15 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/pinniped-server"]
|