mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 09:13:47 +00:00
Temporarily using unmerged version until upstream. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
5 lines
275 B
Docker
5 lines
275 B
Docker
FROM alpine:3.4
|
|
RUN apk update && apk upgrade && apk add --no-cache bash
|
|
ADD https://raw.githubusercontent.com/justincormack/docker/228ee16df3d738efaf001309370b26561c49edd6/contrib/check-config.sh /usr/bin/check-config.sh
|
|
ENTRYPOINT ["/bin/bash", "/usr/bin/check-config.sh"]
|