Sign inSign up

wenyg/centos7

By wenyg

Updated about 7 years ago

C/C++ project building environment

Image
0

10K+

wenyg/centos7 repository overview

Centos7

This docker image can be used to build C/C++ project.

Third-Party Repositories

None.

Installed Software

  • gcc, g++
  • automake, autoconf
  • libtool, cmake, make
  • glibc-static, libstdc++-static

Hook / Integration

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.

Dockerfile

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

Tag summary

Content type

Image

Digest

Size

148.6 MB

Last updated

about 7 years ago

docker pull wenyg/centos7