devtoolset-container
devtoolset-container copied to clipboard
Devtoolset container images based on Red Hat Software Collections, that provide a platform for building and running C and C++ applications. Users can choose between Red Hat Enterprise Linux, Fedora, a...
It would be really useful to support other architectures, especially the arm64. I tried a quick hack - in Dockerfile (for 7-toolchain & centos7) change standard x86_64 arch base image...
``` $ docker run -ti --rm -v $PWD:/opt/app-root/src:z centos/devtoolset-7-toolchain-centos7 make /usr/bin/container-entrypoint: line 5: exec: make: not found ```
The Centos instructions has a typo. The following is the typo: $ docker pull centos/devtooset-7-toolchain-centos7 It should be: $ docker pull centos/devtoolset-7-toolchain-centos7
The Centos instructions has a typo. The following is the typo: $ docker pull centos/devtooset-7-toolchain-centos7 It should be: $ docker pull centos/devtoolset-7-toolchain-centos7
In the Dockerfile, there are these three lines: ``` COPY ./contrib/ /opt/app-root ADD contrib/bin/container-entrypoint /usr/bin/container-entrypoint ADD contrib/bin/usage /usr/local/bin/usage ``` It means usage and container-entrypoint scripts will be twice in the...