build el8 x86_64 and aarch64 rpms

This commit is contained in:
ryan.kuba
2022-03-26 12:49:18 -07:00
parent ce78879132
commit 7506e0881f
6 changed files with 248 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
FROM oraclelinux:8
ENV KASMVNC_BUILD_OS oracle
ENV KASMVNC_BUILD_OS_CODENAME 8
RUN dnf install -y \
gpg* \
less \
redhat-lsb-core \
rng-tools \
rpm* \
rpmlint \
tree \
vim
COPY oracle/*.spec /tmp
RUN dnf builddep -y /tmp/*.spec
RUN useradd -m docker && echo "docker:docker" | chpasswd
USER docker