Last active
August 14, 2019 21:59
-
-
Save uilianries/ba3fa76d026f8e57b4ea9a7e7ea71106 to your computer and use it in GitHub Desktop.
Conan - Fedora30 + GCC 9
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 fedora:30 | |
RUN yum update -y \ | |
&& yum install -y \ | |
gcc.x86_64 \ | |
gcc-c++.x86_64 | |
python3 \ | |
dh-autoreconf \ | |
cmake | |
RUN ln -s /usr/bin/python3 /usr/bin/python | |
RUN curl -s https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py \ | |
&& python /tmp/get-pip.py \ | |
&& rm -f /tmp/get-pip.py | |
RUN pip install conan conan-package-tools | |
RUN conan profile new default --detect |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment