mirror of
https://github.com/naveenrajm7/rpmbuild.git
synced 2025-07-12 04:13:50 +00:00
17 lines
252 B
Docker
17 lines
252 B
Docker
FROM centos:7
|
|
|
|
COPY . .
|
|
|
|
RUN yum install -y gcc rpm-build rpm-devel rpmlint make bash coreutils rpmdevtools
|
|
|
|
RUN pwd && ls -la
|
|
|
|
RUN rpmdev-setuptree
|
|
|
|
COPY cello.spec ~/rpmbuild/SPECS/
|
|
|
|
RUN rpmbuild -ba ~/rpmbuild/SPECS/cello.spec
|
|
|
|
RUN tree ~/rpmbuild
|
|
|