Change NodeInfo namespace

This commit is contained in:
Alex Ellis 2017-03-16 09:30:19 +00:00
parent 29b624d1b1
commit c958aa0119
3 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
(cd gateway && ./armhf.build.sh)
(cd watchdog && ./armhf.build.sh)
(cd gateway && ./build.armhf.sh) && \
(cd watchdog && ./build.armhf.sh)

View File

@ -1,8 +1,7 @@
FROM armhf/alpine:latest
RUN apk --update add nodejs
COPY fwatchdog /usr/bin
RUN apk --no-cache add nodejs
COPY fwatchdog-armhf /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
COPY package.json .

View File

@ -1,3 +1,3 @@
#!/bin/bash
docker build -f Dockerfile.armhf -t alexellis2/faas-nodeinfo:latest-armhf .
docker build -f Dockerfile.armhf -t functions/nodeinfo:latest-armhf .