mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
We need to update the watchdog version for sample functions to 0.9.14 including all references in markdown files. Signed-off-by: Ron Rivera <roncrivera@gmail.com>
17 lines
403 B
Docker
17 lines
403 B
Docker
FROM golang:1.9.7-windowsservercore
|
|
MAINTAINER alexellis2@gmail.com
|
|
ENTRYPOINT []
|
|
|
|
WORKDIR /go/src/github.com/openfaas/faas/sample-functions/golang
|
|
COPY . /go/src/github.com/openfaas/faas/sample-functions/golang
|
|
RUN go build
|
|
|
|
ADD https://github.com/openfaas/faas/releases/download/0.9.14/fwatchdog.exe /watchdog.exe
|
|
|
|
EXPOSE 8080
|
|
ENV fprocess="golang.exe"
|
|
|
|
ENV suppress_lock="true"
|
|
|
|
CMD ["watchdog.exe"]
|