mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-08 19:23:47 +00:00
- remove remainder of editions code - add a new check container to run tests without Docker - switch over `make test` to use new command to build tests Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
200 B
Docker
14 lines
200 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
libarchive-tools \
|
|
qemu-img \
|
|
qemu-system-arm \
|
|
qemu-system-x86_64 \
|
|
&& true
|
|
|
|
COPY . .
|
|
ENTRYPOINT ["/qemu.sh"]
|