mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 14:15:02 +00:00
11 lines
164 B
Docker
11 lines
164 B
Docker
FROM golang:alpine
|
|
|
|
RUN apk update && apk upgrade && apk add git
|
|
|
|
RUN mkdir -p /go/src/9pudc
|
|
WORKDIR /go/src/9pudc
|
|
|
|
COPY . /go/src/9pudc/
|
|
RUN go get
|
|
RUN go install
|