mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-06 01:44:01 +00:00
excludes - Go base images as not yet available - perf which does not build with latest image Signed-off-by: Justin Cormack <justin.cormack@docker.com>
5 lines
234 B
Docker
5 lines
234 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 /usr/bin/check-config.sh
|
|
ENTRYPOINT ["/bin/bash", "/usr/bin/check-config.sh"]
|