This repository has been archived on 2023-11-07. You can view files and clone it, but cannot push or open issues or pull requests.
rpmbuild/Dockerfile
Robert Kaussow c5d3cd0c44
Some checks failed
continuous-integration/drone/push Build is failing
temp remove gpg key import
2020-06-11 15:57:59 +02:00

45 lines
834 B
Docker

FROM centos:7
LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
org.label-schema.name="rpmbuild" \
org.label-schema.vcs-url="https://gitea.rknet.org/docker/rpmbuild" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
ADD overlay/ /
RUN yum install -q -y \
gcc gcc-c++ \
libtool libtool-ltdl \
pam-devel \
dbus-devel \
avahi-devel \
systemd-devel \
make cmake \
git \
bzip2 \
bzip2-devel \
freetype-devel \
fribidi-devel \
expat-devel \
gperf \
nasm \
perl \
python \
yasm \
which \
libva-devel \
zlib-devel \
pkgconfig \
wget curl \
automake autoconf \
yum-utils rpm-build rpmdevtools \
rsync \
epel-release && \
yum clean all
USER root
WORKDIR /drone/src
CMD []