mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-28 22:20:39 +00:00
This includes most things except the containerd and runc builds which I will do next time I update them. Note that all golang:alpine images now for 1.8 are ALpine 3.5 based. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
9 lines
183 B
Docker
9 lines
183 B
Docker
FROM golang:1.8-alpine
|
|
RUN apk update && apk add --no-cache build-base git
|
|
|
|
RUN go get -u github.com/golang/lint/golint
|
|
|
|
COPY compile.sh /usr/bin/
|
|
|
|
ENTRYPOINT ["/usr/bin/compile.sh"]
|