mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-01 17:18:59 +00:00
11 lines
283 B
Docker
11 lines
283 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 && \
|
|
go get -u github.com/gordonklaus/ineffassign && \
|
|
go get -u github.com/LK4D4/vndr
|
|
|
|
COPY . ./
|
|
|
|
ENTRYPOINT ["/compile.sh"]
|