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

42 lines
793 B
Docker
Raw Normal View History

2019-02-09 15:29:00 +01:00
FROM centos:7
2019-03-18 13:46:03 +01:00
LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
2019-03-18 14:02:16 +01:00
org.label-schema.name="rpmbuild" \
2019-03-18 14:02:57 +01:00
org.label-schema.vcs-url="https://gitea.rknet.org/docker/rpmbuild" \
2019-03-18 13:46:03 +01:00
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
2019-11-10 16:27:12 +01:00
RUN yum-config-manager --add-repo http://www.nasm.us/nasm.repo && \
yum install -y \
2019-11-10 14:44:27 +01:00
gcc gcc-c++ \
libtool libtool-ltdl \
2020-02-22 17:41:02 +01:00
gnutls \
2019-11-10 14:44:27 +01:00
gnutls-devel \
pam-devel \
dbus-devel \
avahi-devel \
systemd-devel \
make cmake \
git \
bzip2 \
2019-11-10 20:48:54 +01:00
bzip2-devel \
freetype-devel \
2019-11-10 21:40:37 +01:00
fribidi-devel \
2019-11-10 14:44:27 +01:00
expat-devel \
gperf \
nasm \
perl \
python \
yasm \
2019-11-10 19:32:13 +01:00
which \
2019-11-10 14:44:27 +01:00
libva-devel \
zlib-devel \
pkgconfig \
wget curl \
automake autoconf \
yum-utils rpm-build && \
yum clean all
2019-02-09 15:29:00 +01:00
USER root
CMD /srv/pkg