mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-25 07:52:44 +00:00
The previous commit moved some filesystems to kernel modules. modprobe them before checking if they are enabled. Also update the YAML files for the tests. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
7 lines
359 B
Docker
7 lines
359 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"]
|
|
LABEL org.mobyproject.config='{"readonly": true, "binds": ["/lib/modules:/lib/modules", "/dev:/dev", "/sys:/sys"], "capabilities": ["all"]}'
|