File tree Expand file tree Collapse file tree 6 files changed +14
-15
lines changed Expand file tree Collapse file tree 6 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG CGO_ENABLED=0
44ARG GO111MODULE="off"
55ARG GOPROXY=""
66
7- WORKDIR /go/src/github.com/openfaas-incubator /of-watchdog
7+ WORKDIR /go/src/github.com/openfaas/of-watchdog
88
99COPY vendor vendor
1010COPY config config
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ FROM scratch
33
44ARG PLATFORM
55
6- COPY --from=build /go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog$PLATFORM ./fwatchdog
6+ COPY --from=build /go/src/github.com/openfaas/of-watchdog/of-watchdog$PLATFORM ./fwatchdog
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2017 openfaas-incubator
3+ Copyright (c) 2017 openfaas
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11# of-watchdog
22
3- [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/openfaas-incubator /of-watchdog )] ( https://goreportcard.com/report/github.com/openfaas-incubator /of-watchdog ) [ ![ Build Status] ( https://travis-ci.org/openfaas-incubator /of-watchdog.svg?branch=master )] ( https://travis-ci.org/openfaas-incubator /of-watchdog )
3+ [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/openfaas/of-watchdog )] ( https://goreportcard.com/report/github.com/openfaas/of-watchdog ) [ ![ Build Status] ( https://travis-ci.org/openfaas/of-watchdog.svg?branch=master )] ( https://travis-ci.org/openfaas/of-watchdog )
44[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT )
55[ ![ OpenFaaS] ( https://img.shields.io/badge/openfaas-serverless-blue.svg )] ( https://www.openfaas.com )
66
@@ -31,13 +31,12 @@ The following templates have been available for testing:
3131
3232| Template | HTTP framework | Repo |
3333| ------------------------| ---------------------| --------------------------------------------------------------------|
34- | Node.js 8 | Express.js | https://github.com/openfaas-incubator/node8-express-template |
35- | Node.js 10 (LTS) | Express.js | https://github.com/openfaas-incubator/node10-express-template |
34+ | Node.js 12 (LTS) | Express.js | https://github.com/openfaas/templates/ |
3635| Python 3 & 2.7 | Flask | https://github.com/openfaas-incubator/python-flask-template |
3736| Golang | Go HTTP (stdlib) | https://github.com/openfaas-incubator/golang-http-template |
3837| Golang | (http.HandlerFunc) | https://github.com/openfaas-incubator/golang-http-template |
3938| Ruby | Sinatra | https://github.com/openfaas-incubator/ruby-http |
40- | Java 8 | Sun HTTP / Maven | https://github.com/openfaas/templates/ |
39+ | Java 11 | Sun HTTP / Gradle | https://github.com/openfaas/templates/ |
4140
4241Unofficial: [ .NET Core / C# and Kestrel] ( https://github.com/burtonr/csharp-kestrel-template )
4342
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ docker build --no-cache --build-arg PLATFORM="" -t openfaas/of-watchdog:latest-d
1515
1616docker create --name buildoutput openfaas/of-watchdog:build echo
1717
18- docker cp buildoutput:/go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog ./of-watchdog
19- docker cp buildoutput:/go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog-darwin ./of-watchdog-darwin
20- docker cp buildoutput:/go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog-armhf ./of-watchdog-armhf
21- docker cp buildoutput:/go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog-arm64 ./of-watchdog-arm64
22- docker cp buildoutput:/go/src/github.com/openfaas-incubator /of-watchdog/of-watchdog.exe ./of-watchdog.exe
18+ docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog ./of-watchdog
19+ docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-darwin ./of-watchdog-darwin
20+ docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-armhf ./of-watchdog-armhf
21+ docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-arm64 ./of-watchdog-arm64
22+ docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog.exe ./of-watchdog.exe
2323
2424docker rm buildoutput
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ import (
1616 "syscall"
1717 "time"
1818
19- "github.com/openfaas-incubator/of-watchdog/config"
20- "github.com/openfaas-incubator/of-watchdog/executor"
21- "github.com/openfaas-incubator/of-watchdog/metrics"
2219 limiter "github.com/openfaas/faas-middleware/concurrency-limiter"
20+ "github.com/openfaas/of-watchdog/config"
21+ "github.com/openfaas/of-watchdog/executor"
22+ "github.com/openfaas/of-watchdog/metrics"
2323)
2424
2525var (
You can’t perform that action at this time.
0 commit comments