mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-27 08:08:32 +00:00
This makes it easier to safely udpate the vendor directory Signed-off-by: Dave Tucker <dt@docker.com>
10 lines
224 B
Docker
10 lines
224 B
Docker
FROM alpine:3.5
|
|
RUN apk update && apk add --no-cache build-base git go
|
|
ENV GOPATH=/go PATH=$PATH:/go/bin
|
|
RUN go get -u github.com/golang/lint/golint
|
|
RUN go get -u github.com/LK4D4/vndr
|
|
|
|
COPY . ./
|
|
|
|
ENTRYPOINT ["/compile.sh"]
|