2020-02-05 22:40:59 +00:00
|
|
|
FROM centos:8
|
|
|
|
RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
|
|
|
|
COPY ./test-packages .
|
|
|
|
RUN dnf -y install $(cat ./test-packages) && touch /.in-container
|
|
|
|
RUN pip3 install pocketlint
|
2018-12-10 12:45:27 +00:00
|
|
|
RUN useradd weldr
|
|
|
|
VOLUME /lorax-ro
|
|
|
|
VOLUME /test-results
|
|
|
|
WORKDIR /lorax-ro
|