2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-20 19:19:02 +00:00
restic/vendor/github.com/cpuguy83/go-md2man/Dockerfile
2017-09-13 14:09:48 +02:00

9 lines
260 B
Docker

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"]