https://github.com/tafthorne/fdev2
Dockerfile that sets up a basic gcc CentOS environment with a number of libraries configured
https://github.com/tafthorne/fdev2
centos developer-tools devtool devtools docker dockerfile gcc gcc-centos-environment
Last synced: 28 days ago
JSON representation
Dockerfile that sets up a basic gcc CentOS environment with a number of libraries configured
- Host: GitHub
- URL: https://github.com/tafthorne/fdev2
- Owner: TafThorne
- License: gpl-3.0
- Created: 2018-05-02T14:31:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T20:23:10.000Z (over 6 years ago)
- Last Synced: 2025-12-26T20:57:54.295Z (6 months ago)
- Topics: centos, developer-tools, devtool, devtools, docker, dockerfile, gcc, gcc-centos-environment
- Language: Dockerfile
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# fdev2
Dockerfile that sets up a basic gcc CentOS environment with a number of
libraries configured
The Docker Image is listed on Docker Hub:
https://hub.docker.com/r/tafthorne/fdev2/
To pull the image:
docker pull tafthorne/fdev2
An overview of the included libraries is given below.
## Using This Image
The expected way to use this image is to navigate to the working directory
where your source code resides and start an interactive session.
docker run -ti --volume="${PWD}:/shared" -w "/shared" tafthorne/fdev2
Then within the running container you can call make or gcc as if it were a
native tool. The libraries added to this image will be in the global include
path.
## GNU GCC
The GNU Compiler Collection is a compiling system that supports several
languages. This project focuses more on the C and C++ usage.
## spdlog
spdlog is a fast, header only C++ logging library. For further details please
see their project page.
* https://github.com/gabime/spdlog
## Contributing
Please see the notes in CONTRIBUTING.md.