mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-01-06 05:27:23 +00:00
Encode git version info into binary and user agent
Signed-off-by: Monis Khan <mok@vmware.com>
This commit is contained in:
@@ -5,7 +5,7 @@ ARG ACCESS_TOKEN_USR="nothing"
|
||||
ARG ACCESS_TOKEN_PWD="nothing"
|
||||
|
||||
# git is required to fetch go dependencies
|
||||
RUN apk add --no-cache ca-certificates git
|
||||
RUN apk add --no-cache ca-certificates git bash
|
||||
|
||||
# Create a netrc file using the credentials specified using --build-arg
|
||||
RUN printf "machine github.com\n\
|
||||
@@ -28,15 +28,15 @@ RUN go mod download
|
||||
# Copy the source code
|
||||
COPY . .
|
||||
# Build the executable binary
|
||||
RUN GOOS=linux GOARCH=amd64 go build -o out ./...
|
||||
RUN GOOS=linux GOARCH=amd64 go build -ldflags "$(hack/get-ldflags.sh)" -o out ./...
|
||||
|
||||
FROM alpine:latest
|
||||
# Install CA certs and some tools for debugging
|
||||
RUN apk --update --no-cache add ca-certificates bash curl
|
||||
WORKDIR /root/
|
||||
# Copy the binary from the build-env stage
|
||||
COPY --from=build-env /work/out/placeholder-name app
|
||||
COPY --from=build-env /work/out/placeholder-name placeholder-name
|
||||
# Document the port
|
||||
EXPOSE 8080
|
||||
# Set the command
|
||||
CMD ["./app"]
|
||||
CMD ["./placeholder-name"]
|
||||
|
||||
Reference in New Issue
Block a user