Codebase list go-md2man-v2 / debian/2.0.1+ds1-1 Dockerfile
debian/2.0.1+ds1-1

Tree @debian/2.0.1+ds1-1 (Download .tar.gz)

Dockerfile @debian/2.0.1+ds1-1raw · history · blame

1
2
3
4
5
6
7
8
FROM golang:1.8 AS build
COPY . /go/src/github.com/cpuguy83/go-md2man
WORKDIR /go/src/github.com/cpuguy83/go-md2man
RUN CGO_ENABLED=0 go build

FROM scratch
COPY --from=build /go/src/github.com/cpuguy83/go-md2man/go-md2man /go-md2man
ENTRYPOINT ["/go-md2man"]