This docker image can be used to build C/C++ project.
None.
When running this container, you will need to provide a /srv mountpint, which must contain, as its root, a run_in_docker srcipt that is executable. The image weill execute this build script to perform the actual building , running of tests, export, etc.
Here is the Dockerfile used to build this image:
FROM centos:7
RUN yum install -y gcc gcc-c++ \
libtool libtool-ltdl \
make cmake \
git \
pkgconfig \
sudo \
automake autoconf \
glibc-static libstdc++-static \
yum-utils rpmbuild && \
yum clean all
WORKDIR /srv
CMD /srv/run_in_docker
Content type
Image
Digest
Size
148.6 MB
Last updated
about 7 years ago
docker pull wenyg/centos7