1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 15:45:53 +01:00
Files
bootc/ci/Dockerfile.ci
Colin Walters 7d1476c7ad ci: Two fixes
2022-12-04 11:51:10 -05:00

14 lines
432 B
Docker

# This really just depends on `cosa run`, which we could
# in theory split out separately at some point later.
FROM quay.io/coreos-assembler/coreos-assembler:latest
WORKDIR /srv
USER root
# Grab all of our ci scripts
COPY /ci/ /ci/
# And install our tests
COPY /tests/kolainst/ /usr/lib/coreos-assembler/tests/kola/bootc/
RUN ln -sr /ci/run-kola.sh /usr/bin/bootc-run-kola
USER builder
ENTRYPOINT []
CMD ["/usr/bin/bootc-run-kola"]