docker-images/cpp-ubuntu.Dockerfile
Erki 377dfe073e
All checks were successful
continuous-integration/drone/push Build is passing
Re-enable caching for faster building
2022-01-23 16:23:50 +02:00

9 lines
331 B
Docker

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