mirror of
https://github.com/falcosecurity/falco.git
synced 2025-08-08 09:37:58 +00:00
feat(image): set default value for UBI_VERSION build arg
Signed-off-by: Frederico Araujo <frederico.araujo@ibm.com>
This commit is contained in:
parent
04cadee6fa
commit
54a817bf3c
@ -1,4 +1,4 @@
|
|||||||
ARG UBI_VERSION
|
ARG UBI_VERSION=latest
|
||||||
FROM registry.access.redhat.com/ubi8/ubi:${UBI_VERSION}
|
FROM registry.access.redhat.com/ubi8/ubi:${UBI_VERSION}
|
||||||
|
|
||||||
ARG FALCO_VERSION
|
ARG FALCO_VERSION
|
||||||
@ -23,14 +23,14 @@ ENV HOME /root
|
|||||||
|
|
||||||
RUN dnf -y update && \
|
RUN dnf -y update && \
|
||||||
dnf -y install \
|
dnf -y install \
|
||||||
curl \
|
curl \
|
||||||
make \
|
make \
|
||||||
cmake \
|
cmake \
|
||||||
gcc \
|
gcc \
|
||||||
llvm-toolset \
|
llvm-toolset \
|
||||||
clang \
|
clang \
|
||||||
kmod \
|
kmod \
|
||||||
&& dnf -y clean all ; rm -rf /var/cache/{dnf,yum}
|
&& dnf -y clean all ; rm -rf /var/cache/{dnf,yum}
|
||||||
|
|
||||||
RUN mkdir /build && cd /build/ && curl --remote-name-all -L https://github.com/dell/dkms/archive/refs/tags/v3.0.3.tar.gz && \
|
RUN mkdir /build && cd /build/ && curl --remote-name-all -L https://github.com/dell/dkms/archive/refs/tags/v3.0.3.tar.gz && \
|
||||||
tar xvf v3.0.3.tar.gz && cd dkms-3.0.3 && make install-redhat && rm -rf /build
|
tar xvf v3.0.3.tar.gz && cd dkms-3.0.3 && make install-redhat && rm -rf /build
|
||||||
|
Loading…
Reference in New Issue
Block a user