Skip to content

Commit c62e419

Browse files
burtonralexellis
authored andcommitted
Update docker images to use openfaas namespace
Signed-off-by: Burton Rheutan <[email protected]>
1 parent 1263e66 commit c62e419

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ script:
1111
- sh build.sh
1212
after_success:
1313
- if [ -z $DOCKER_NS ] ; then
14-
export DOCKER_NS=functions;
14+
export DOCKER_NS=openfaas;
1515
fi
1616
- if [ ! -z "$TRAVIS_TAG" ] ; then
1717
export DOCKER_CLI_EXPERIMENTAL=enabled

Dockerfile.packager

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM functions/of-watchdog:build as build
1+
FROM openfaas/of-watchdog:build as build
22
FROM scratch
33

44
ARG PLATFORM

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
if [ ! "$http_proxy" = "" ]
44
then
5-
docker build --no-cache --build-arg "https_proxy=$https_proxy" --build-arg "http_proxy=$http_proxy" -t functions/of-watchdog:build .
5+
docker build --no-cache --build-arg "https_proxy=$https_proxy" --build-arg "http_proxy=$http_proxy" -t openfaas/of-watchdog:build .
66
else
7-
docker build -t functions/of-watchdog:build .
7+
docker build -t openfaas/of-watchdog:build .
88
fi
99

1010
docker build --no-cache --build-arg PLATFORM="-darwin" -t openfaas/of-watchdog:latest-dev-darwin . -f Dockerfile.packager
@@ -13,7 +13,7 @@ docker build --no-cache --build-arg PLATFORM="-arm64" -t openfaas/of-watchdog:la
1313
docker build --no-cache --build-arg PLATFORM=".exe" -t openfaas/of-watchdog:latest-dev-windows . -f Dockerfile.packager
1414
docker build --no-cache --build-arg PLATFORM="" -t openfaas/of-watchdog:latest-dev-x86_64 . -f Dockerfile.packager
1515

16-
docker create --name buildoutput functions/of-watchdog:build echo
16+
docker create --name buildoutput openfaas/of-watchdog:build echo
1717

1818
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog ./of-watchdog
1919
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog-darwin ./of-watchdog-darwin

0 commit comments

Comments
 (0)