mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-13 05:32:35 +00:00
These are standalone, better to have them at the top. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
9 lines
186 B
Docker
9 lines
186 B
Docker
FROM golang:1.7-alpine3.5
|
|
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"]
|