Skip to content

Instantly share code, notes, and snippets.

@uilianries
Last active August 14, 2019 21:59
Show Gist options
  • Save uilianries/ba3fa76d026f8e57b4ea9a7e7ea71106 to your computer and use it in GitHub Desktop.
Save uilianries/ba3fa76d026f8e57b4ea9a7e7ea71106 to your computer and use it in GitHub Desktop.
Conan - Fedora30 + GCC 9
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