mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 16:56:47 +00:00
* Add Windows Dockerfile.win * Create appveyor.yml * Create build.ps1 * Port Golang example to Windows
17 lines
333 B
Docker
17 lines
333 B
Docker
FROM golang:1.7.5-windowsservercore
|
|
MAINTAINER alexellis2@gmail.com
|
|
ENTRYPOINT []
|
|
|
|
WORKDIR /go/src/github.com/alexellis/faas/sample-functions/golang
|
|
COPY . /go/src/github.com/alexellis/faas/sample-functions/golang
|
|
RUN go build
|
|
|
|
ADD ./watchdog.exe /
|
|
|
|
EXPOSE 8080
|
|
ENV fprocess="app.exe"
|
|
|
|
ENV suppress_lock="true"
|
|
|
|
CMD ["watchdog.exe"]
|