20 lines
316 B
Docker
20 lines
316 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
clang \
|
|
llvm \
|
|
cmake \
|
|
git \
|
|
make \
|
|
g++ \
|
|
python3 \
|
|
py3-pip
|
|
|
|
|
|
RUN pip install --no-cache-dir --break-system-packages conan gitpython
|
|
|
|
RUN clang --version \
|
|
&& conan --version \
|
|
&& pip --version \
|
|
&& cmake --version
|