mirror of
https://github.com/Syping/dtranslatebot-build.git
synced 2024-11-23 14:20:24 +01:00
8 lines
353 B
Text
8 lines
353 B
Text
FROM centos:7
|
|
RUN yum install -y centos-release-scl epel-release && \
|
|
yum install -y cmake3 epel-rpm-macros-systemd make devtoolset-9-annobin devtoolset-9-gcc-c++ git perl 'perl(IPC::Cmd)' rpmdevtools rpmlint systemd-rpm-macros && \
|
|
yum clean all
|
|
RUN useradd -m -s /bin/bash -U rpmbuild
|
|
USER rpmbuild
|
|
WORKDIR /home/rpmbuild
|
|
RUN rpmdev-setuptree
|