|
FROM alpine:3.21.3
|
|
|
|
# Install tools required for building.
|
|
RUN apk update && \
|
|
apk add --no-cache \
|
|
autoconf bash build-base cmake gdb \
|
|
git libstdc++ libtool linux-headers \
|
|
m4 perl python3 py3-pip\
|
|
&& \
|
|
pip install --break-system-packages conan && \
|
|
conan profile detect
|