light/tools/docker/linux_amd64

18 lines
288 B
Plaintext
Raw Normal View History

2024-10-14 09:27:37 +00:00
FROM ubuntu:latest
RUN apt update
RUN apt-get install -y \
build-essential \
cmake \
clang \
clang-tidy \
gcc \
g++ \
python3 \
python3-pip \
python3.12-venv
RUN python3 -m venv /opt/venv
RUN . /opt/venv/bin/activate
RUN pip install conan==2.5.0