Skip to content

Instantly share code, notes, and snippets.

@uilianries
Last active March 26, 2025 07:31
Show Gist options
  • Save uilianries/f44e64131634b4418aee8b52d54485a1 to your computer and use it in GitHub Desktop.
Save uilianries/f44e64131634b4418aee8b52d54485a1 to your computer and use it in GitHub Desktop.
Docker Conan Ubuntu 24.04 GCC 13
FROM ubuntu:24.04@sha256:3afff29dffbc200d202546dc6c4f614edc3b109691e7ab4aa23d02b42ba86790
LABEL maintainer="Conan.io <[email protected]>"
ENV DEBIAN_FRONTEND=noninteractive
ENV PATH="/root/.local/bin:$PATH"
RUN apt-get -qq update \
&& apt-get -qq install -y --no-install-recommends --no-install-suggests \
binutils \
git \
pkg-config \
cmake \
make \
ca-certificates \
python3 \
python3-dev \
pipx \
gcc \
g++ \
libc6-dev
RUN rm -rf /var/lib/apt/lists/*
ARG CONAN_VERSION=2.14.0
RUN pipx install conan==${CONAN_VERSION} \
&& conan profile detect
WORKDIR /root/conan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment