mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 11:51:49 +00:00
11 lines
173 B
Docker
11 lines
173 B
Docker
FROM golang:alpine
|
|
|
|
RUN apk update && apk upgrade && apk add git
|
|
|
|
RUN mkdir -p /go/src/mdnstool
|
|
WORKDIR /go/src/mdnstool
|
|
|
|
COPY . /go/src/mdnstool/
|
|
RUN go get
|
|
RUN go install
|