mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
I used AlpineFunction as the example to follow as suggested by @alexellis Signed-off-by: scott.eppler <scott.eppler@coda.global>
24 lines
487 B
Docker
24 lines
487 B
Docker
FROM openfaas/classic-watchdog:0.14.4 as watchdog
|
|
|
|
FROM golang:1.11-alpine as builder
|
|
ENV CGO_ENABLED=0
|
|
|
|
MAINTAINER alex@openfaas.com
|
|
ENTRYPOINT []
|
|
|
|
WORKDIR /go/src/github.com/openfaas/faas/sample-functions/WebhookStash
|
|
|
|
COPY handler.go .
|
|
|
|
RUN go install
|
|
|
|
FROM alpine:3.10
|
|
|
|
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
COPY --from=builder /go/bin/WebhookStash /usr/bin/WebhookStash
|
|
ENV fprocess "/usr/bin/WebhookStash"
|
|
|
|
CMD ["/usr/bin/fwatchdog"]
|