You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM registry.access.redhat.com/ubi9/ubi:latest
|
|
|
|
VOLUME /payload
|
|
|
|
RUN dnf update -y && \
|
|
dnf install python3-virtualenv python3-setuptools python3-pip make git -y
|
|
|
|
WORKDIR /payload
|
|
ENTRYPOINT make install-deps && make test
|