mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 14:43:13 +00:00
This does not yet move the `make test` options in the Makefile, will probably move those too later. 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"]
|