Files
linuxkit/alpine/packages/mdnstool/Dockerfile
Justin Cormack 87dae6079b Initial arm support
Not yet working, some parts also not yet cross compiled

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
2016-01-13 15:49:38 +00:00

16 lines
267 B
Docker

FROM golang:alpine
RUN apk update && apk upgrade && apk add git
RUN mkdir -p /go/src/mdnstool
WORKDIR /go/src/mdnstool
ARG GOARCH
ARG GOOS
COPY . /go/src/mdnstool/
RUN go get && go install
RUN [ -f /go/bin/*/mdnstool ] && mv /go/bin/*/mdnstool /go/bin/ || true