50d0c6e0c1
This allows other test methods to use the same list of packages without duplicating it.
8 lines
206 B
Docker
8 lines
206 B
Docker
FROM registry.fedoraproject.org/fedora:rawhide
|
|
COPY test-packages .
|
|
RUN dnf -y install $(cat test-packages) && touch /.in-container
|
|
RUN useradd weldr
|
|
VOLUME /lorax-ro
|
|
VOLUME /test-results
|
|
WORKDIR /lorax-ro
|