Last active
May 13, 2024 00:45
-
-
Save alext234/5d84fbaecafd1d9d2249e5e2d9610910 to your computer and use it in GitHub Desktop.
A simple ubuntu container with gcc and cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER alex | |
# update and install dependencies | |
RUN apt-get update \ | |
&& apt-get install -y \ | |
software-properties-common \ | |
wget \ | |
&& add-apt-repository -y ppa:ubuntu-toolchain-r/test \ | |
&& apt-get update \ | |
&& apt-get install -y \ | |
make \ | |
git \ | |
curl \ | |
vim \ | |
vim-gnome \ | |
&& apt-get install -y cmake=3.5.1-1ubuntu3 \ | |
&& apt-get install -y \ | |
gcc-4.9 g++-4.9 gcc-4.9-base \ | |
gcc-4.8 g++-4.8 gcc-4.8-base \ | |
gcc-4.7 g++-4.7 gcc-4.7-base \ | |
gcc-4.6 g++-4.6 gcc-4.6-base \ | |
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 100 \ | |
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 100 |
added vim-gnome (gvim)
In order to run gvim from the container,
- Give docker the rights to access X-server
xhost +local:docker
- Run a terminal in container
sudo docker run -it --rm -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix my-docker-gcc
- Run gvim from the terminal
gvim
an example of how to build (with Makefile generated from cmake) inside the container
(from /home/u/LibPcap directory)
sudo docker run --rm -v "$PWD":/home/u/NetCapStatistics -w /home/u/NetCapStatistics/build alext234/my-docker-gcc cmake -DCMAKE_CXX_COMPILER=g++ -DCMAKE_BUILD_TYPE=Release ..
sudo docker run --rm -v "$PWD":/home/u/NetCapStatistics -w /home/u/NetCapStatistics/build alext234/my-docker-gcc make
What is the latest cmake version? I tried greater than 11 and I see error.
Thanks,
I have not touched for a while. Do you still have the problem @omidziaee ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ubuntu version: 16.04 (xenial)