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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have not touched for a while. Do you still have the problem @omidziaee ?