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/ubi8/ubi:latest
|
|
|
|
VOLUME /repo
|
|
|
|
RUN dnf update -y && \
|
|
dnf install -y python3-devel rpm-build make git
|
|
|
|
WORKDIR /repo
|
|
ENV DIST_VERSION 8
|
|
ENTRYPOINT make _build_local
|