Skip to content

Commit

Permalink
Fix up scanner-build
Browse files Browse the repository at this point in the history
  • Loading branch information
BradLugo committed Jul 25, 2024
1 parent d915ab5 commit 5a94c41
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions images/scanner-build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,33 @@ FROM registry.access.redhat.com/ubi8:latest
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN dnf update -y && \
dnf install -y dnf-plugins-core epel-release wget && \
dnf -y groupinstall "Development Tools" && \
dnf install -y dnf-plugins-core wget && \
dnf config-manager --set-enabled ubi-8-codeready-builder-rpms && \
dnf update -y && \
# This set replaces centos:stream8 "Development Tools". It is possible
# rox-ci-image does not need all of these.
dnf install -y \
autoconf \
automake \
binutils \
gcc \
gcc-c++ \
gdb \
glibc-devel \
libtool \
make \
pkgconf \
pkgconf-m4 \
pkgconf-pkg-config \
redhat-rpm-config \
rpm-build \
strace \
ctags \
git \
perl-Fedora-VSP \
perl-generators \
source-highlight && \
dnf upgrade -y && \
dnf clean all && \
rm -rf /var/cache/dnf /var/cache/yum

Expand Down

0 comments on commit 5a94c41

Please sign in to comment.