forked from libfuse/libfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.coverity
More file actions
executable file
·33 lines (26 loc) · 944 Bytes
/
Dockerfile.coverity
File metadata and controls
executable file
·33 lines (26 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Copyright 2018-2020, Intel Corporation
# Copyright 2025 Hewlett Packard Enterprise Development LP
#
# 'recipe' for Docker to build for a Coverity scan.
#
# Pull base image
FROM fedora:latest
LABEL maintainer="daos-stack <daos@daos.groups.io>""
# use same UID as host and default value of 1000 if not specified
ARG UID=1000
# Install basic tools
RUN dnf -y install mock make rpm-build curl createrepo rpmlint redhat-lsb-core \
git python-srpm-macros rpmdevtools
RUN dnf -y makecache && dnf -y install gcc
# Add build user (to keep rpmbuild happy)
ENV USER build
ENV PASSWD build
RUN useradd -u $UID -ms /bin/bash $USER
RUN echo "$USER:$PASSWD" | chpasswd
# add the user to the mock group so it can run mock
RUN usermod -a -G mock $USER
# mock in Docker needs to use the old-chroot option
RUN grep use_nspawn || \
echo "config_opts['use_nspawn'] = False" >> /etc/mock/site-defaults.cfg
RUN chmod g+w /etc/mock/*