mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-10 08:32:05 +00:00
Currently the test will never fail, planning to fix this upstream. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
5 lines
234 B
Docker
5 lines
234 B
Docker
FROM alpine:3.4
|
|
RUN apk update && apk upgrade && apk add --no-cache bash
|
|
ADD https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh /usr/bin/check-config.sh
|
|
ENTRYPOINT ["/bin/bash", "/usr/bin/check-config.sh"]
|