10 lines
324 B
Docker
10 lines
324 B
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y --no-install-recommends git build-essential cmake ninja-build python3 python3-pip
|
|
RUN pip3 install --upgrade conan
|
|
RUN conan profile new default --detect
|
|
RUN conan profile update settings.compiler.libcxx=libstdc++11 default
|