mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
14 lines
322 B
Docker
14 lines
322 B
Docker
FROM fedora:28
|
|
|
|
RUN mkdir -p /tmp/shared /tmp/source
|
|
|
|
RUN yum install -y qemu-img qemu-block-curl && dnf clean all
|
|
|
|
COPY cdi-func-test-file-host-init /usr/bin/
|
|
|
|
RUN chmod u+x /usr/bin/cdi-func-test-file-host-init
|
|
|
|
COPY tinyCore.iso /tmp/source/tinyCore.iso
|
|
|
|
ENTRYPOINT ["cdi-func-test-file-host-init", "-alsologtostderr"]
|