light/tools/docker/linux_amd64

17 lines
287 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
2024-10-14 11:00:47 +00:00
RUN . /opt/venv/bin/activate && pip install conan==2.5.0