Skip to content
Snippets Groups Projects
Commit fbcec74f authored by scott.eppler's avatar scott.eppler Committed by Alex Ellis
Browse files

Update MarkdownRender sample-function to use new approach


    I used AlpineFunction as the example to follow as suggested by
    @alexellis

Signed-off-by: default avatarscott.eppler <scott.eppler@coda.global>
parent 932d4449
No related branches found
No related tags found
No related merge requests found
FROM openfaas/classic-watchdog:0.14.4 as watchdog
FROM golang:1.11-alpine as builder FROM golang:1.11-alpine as builder
ENV CGO_ENABLED=0 ENV CGO_ENABLED=0
...@@ -11,10 +13,10 @@ COPY vendor vendor ...@@ -11,10 +13,10 @@ COPY vendor vendor
RUN go install RUN go install
FROM functions/alpine:latest FROM alpine:3.10
# Needed to reach the hub COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN apk --no-cache add ca-certificates RUN chmod +x /usr/bin/fwatchdog
COPY --from=builder /go/bin/MarkdownRender /usr/bin/MarkdownRender COPY --from=builder /go/bin/MarkdownRender /usr/bin/MarkdownRender
ENV fprocess "/usr/bin/MarkdownRender" ENV fprocess "/usr/bin/MarkdownRender"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment