-
-
Save joparara/0368e3cacd15bec004655af7898aa3b9 to your computer and use it in GitHub Desktop.
A simple ubuntu container with gcc and cmake
This file contains hidden or 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