Pending ARMhf changes

This commit is contained in:
Alex Ellis
2017-01-30 22:15:06 +00:00
parent 018b065ef1
commit 1aba6699fe
13 changed files with 174 additions and 36 deletions

View File

@ -0,0 +1,17 @@
FROM alexellis2/go-armhf:1.7.4
MAINTAINER alexellis2@gmail.com
ENTRYPOINT []
RUN apk --no-cache add make
WORKDIR /go/src/github.com/alexellis/faas/sample-functions/DockerHubStats
COPY . /go/src/github.com/alexellis/faas/sample-functions/DockerHubStats
RUN make
COPY ./fwatchdog /usr/bin
RUN chmod +x /usr/bin/fwatchdog
ENV fprocess "/go/bin/DockerHubStats"
CMD [ "/usr/bin/fwatchdog"]

View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t alexellis2/faas-hubstats:latest-armhf .