Include markdown sample

Fix UI refresh problem
Enable invocation from portal
This commit is contained in:
Alex Ellis
2017-01-31 09:08:58 +00:00
parent c211ba0d07
commit 4e73f787da
11 changed files with 152 additions and 7 deletions

View File

@ -0,0 +1,10 @@
FROM golang:1.7.3
RUN mkdir -p /go/src/app
COPY handler.go /go/src/app
WORKDIR /go/src/app
RUN go get github.com/microcosm-cc/bluemonday && \
go get github.com/russross/blackfriday
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
CMD ["echo"]