mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-11-24 08:32:32 +02:00
73ab887f25
* Add kubernetesDeploy step Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
21 lines
626 B
Docker
21 lines
626 B
Docker
FROM golang:1.13 AS build-env
|
|
COPY . /build
|
|
WORKDIR /build
|
|
|
|
# execute tests
|
|
RUN go test ./... -cover
|
|
|
|
## ONLY tests so far, building to be added later
|
|
# execute build
|
|
RUN export GIT_COMMIT=$(git rev-parse HEAD) && \
|
|
export GIT_REPOSITORY=$(git config --get remote.origin.url) && \
|
|
CGO_ENABLED=0 go build \
|
|
-ldflags \
|
|
"-X github.com/SAP/jenkins-library/cmd.GitCommit=${GIT_COMMIT} \
|
|
-X github.com/SAP/jenkins-library/pkg/log.LibraryRepository=${GIT_REPOSITORY}" \
|
|
-o piper
|
|
|
|
# FROM gcr.io/distroless/base:latest
|
|
# COPY --from=build-env /build/piper /piper
|
|
# ENTRYPOINT ["/piper"]
|