docker-images/cpp-ubuntu.Dockerfile
Erki 0eb10a4800
All checks were successful
continuous-integration/drone/push Build is passing
Ubuntu C++ image
2021-03-14 15:49:12 +02:00

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