@@ -8,7 +8,7 @@ ENV CGO_ENABLED=0
88
99COPY --from=license-check /license-check /usr/bin/
1010
11- WORKDIR /go/src/github.com/openfaas-incubator /ofc-bootstrap
11+ WORKDIR /go/src/github.com/openfaas/ofc-bootstrap
1212COPY . .
1313
1414RUN go mod download
@@ -21,16 +21,16 @@ RUN go test $(go list ./... | grep -v /vendor/ | grep -v /template/|grep -v /bui
2121RUN VERSION=$(git describe --all --exact-match `git rev-parse HEAD` | grep tags | sed 's/tags\///') \
2222 && GIT_COMMIT=$(git rev-list -1 HEAD) \
2323 && CGO_ENABLED=0 GOOS=linux go build --ldflags "-s -w \
24- -X github.com/openfaas-incubator /ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
25- -X github.com/openfaas-incubator /ofc-bootstrap/version.Version=${VERSION}" \
24+ -X github.com/openfaas/ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
25+ -X github.com/openfaas/ofc-bootstrap/version.Version=${VERSION}" \
2626 -a -installsuffix cgo -o ofc-bootstrap \
2727 && CGO_ENABLED=0 GOOS=darwin go build --ldflags "-s -w \
28- -X github.com/openfaas-incubator /ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
29- -X github.com/openfaas-incubator /ofc-bootstrap/version.Version=${VERSION}" \
28+ -X github.com/openfaas/ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
29+ -X github.com/openfaas/ofc-bootstrap/version.Version=${VERSION}" \
3030 -a -installsuffix cgo -o ofc-bootstrap-darwin \
3131 && CGO_ENABLED=0 GOOS=windows go build --ldflags "-s -w \
32- -X github.com/openfaas-incubator /ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
33- -X github.com/openfaas-incubator /ofc-bootstrap/version.Version=${VERSION}" \
32+ -X github.com/openfaas/ofc-bootstrap/version.GitCommit=${GIT_COMMIT} \
33+ -X github.com/openfaas/ofc-bootstrap/version.Version=${VERSION}" \
3434 -a -installsuffix cgo -o ofc-bootstrap.exe
3535
3636# Release stage
@@ -47,9 +47,9 @@ WORKDIR /home/app
4747
4848USER app
4949
50- COPY --from=builder /go/src/github.com/openfaas-incubator /ofc-bootstrap/ofc-bootstrap /usr/bin/
51- COPY --from=builder /go/src/github.com/openfaas-incubator /ofc-bootstrap/ofc-bootstrap-darwin /usr/bin/
52- COPY --from=builder /go/src/github.com/openfaas-incubator /ofc-bootstrap/ofc-bootstrap.exe /usr/bin/
50+ COPY --from=builder /go/src/github.com/openfaas/ofc-bootstrap/ofc-bootstrap /usr/bin/
51+ COPY --from=builder /go/src/github.com/openfaas/ofc-bootstrap/ofc-bootstrap-darwin /usr/bin/
52+ COPY --from=builder /go/src/github.com/openfaas/ofc-bootstrap/ofc-bootstrap.exe /usr/bin/
5353
5454ENV PATH=$PATH:/usr/bin/
5555
0 commit comments