diff --git a/build-doh-server.jenkins b/build-doh-server.jenkins index 4f5bde2..bc88d78 100644 --- a/build-doh-server.jenkins +++ b/build-doh-server.jenkins @@ -1,7 +1,7 @@ def nodeLabel = "${UUID.randomUUID().toString()}" -def repository = "registry.test-chamber-13.lan" -def kanikoImage = "${repository}/nhyatt/kaniko:latest" -def repositoryCreds = "quay-repository-creds" +def repository = "registry.cluster.test-chamber-13.lan" +def kanikoImage = "${repository}/library/kaniko:latest" +def repositoryCreds = "harbor-repository-creds" podTemplate( name: "pipelineContainer", @@ -45,14 +45,14 @@ spec: stage('Build Container') { container('kaniko') { - def dockerfile = """FROM golang:alpine AS BUILDER + def dockerfile = """FROM ${repository}/dockerhub/library/golang:alpine AS BUILDER RUN apk --no-cache add git upx && \\ go get github.com/m13253/dns-over-https/doh-server && \\ go get -d -v /go/src/github.com/m13253/dns-over-https/doh-server/... && \\ go install -v /go/src/github.com/m13253/dns-over-https/doh-server/... && \\ go build -ldflags="-s -w" -o /go/dohserver /go/src/github.com/m13253/dns-over-https/doh-server/ && \\ upx --brute /go/dohserver -FROM ${repository}/nhyatt/alpine:latest +FROM ${repository}/library/alpine:latest RUN apk add --no-cache && \\ addgroup -S -g 1000 app && \\ adduser -S app -G app -h /app -u 1000 @@ -63,7 +63,7 @@ ENTRYPOINT ./dohserver """ writeFile file: workspace + '/Dockerfile', text: dockerfile - sh "/kaniko/executor --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${repository}/nhyatt/dohserver:latest\"" + sh "/kaniko/executor --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${repository}/library/dohserver:latest\"" } } }