mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-05 13:45:16 +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>
6 lines
218 B
Docker
6 lines
218 B
Docker
FROM alpine:3.5
|
|
RUN apk update && apk upgrade && apk add --no-cache bash
|
|
ADD https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh /check-config.sh
|
|
ADD . ./
|
|
ENTRYPOINT ["/bin/sh", "/check.sh"]
|