Skip to content

Instantly share code, notes, and snippets.

@alext234
Last active April 12, 2024 13:59
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save alext234/5d84fbaecafd1d9d2249e5e2d9610910 to your computer and use it in GitHub Desktop.
Save alext234/5d84fbaecafd1d9d2249e5e2d9610910 to your computer and use it in GitHub Desktop.
A simple ubuntu container with gcc and cmake
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
@omidziaee
Copy link

What is the latest cmake version? I tried greater than 11 and I see error.
Thanks,

@alext234
Copy link
Author

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