mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
13 lines
267 B
C++
13 lines
267 B
C++
FROM gcc:13
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
cmake \
|
|
ninja-build \
|
|
python3-pip \
|
|
python3-dev \
|
|
&& pip3 install --break-system-packages conan \
|
|
&& conan profile detect --force \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /workspace
|