mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-09 15:00:08 +00:00
- remove remainder of editions code - add a new check container to run tests without Docker - switch over `make test` to use new command to build tests Signed-off-by: Justin Cormack <justin.cormack@docker.com>
9 lines
188 B
Docker
9 lines
188 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
|
|
|
|
COPY . ./
|
|
|
|
ENTRYPOINT ["/compile.sh"]
|