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