Skip to content

Commit d9aedd7

Browse files
committed
Fixed alpine docker build issue by requiring conan to build all tools. This is because of an incompatibility with the glibc prebuilt tools. Conan is now building everythng
1 parent 83088db commit d9aedd7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docker/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
# os
2929
# ---------------------------------------------------------------------
3030

31-
# base image - alpine 3.18
32-
FROM alpine:3.22 AS os
31+
# base image - alpine 3.23
32+
FROM alpine:3.23 AS os
3333

3434
# ---------------------------------------------------------------------
3535
# build
@@ -86,7 +86,7 @@ RUN if [ -z "$WITH_TESTS" ] || [ "$WITH_TESTS" = "false" ]; then \
8686
&& . /python/conan/bin/activate \
8787
&& conan profile detect \
8888
&& conan create cppagent \
89-
--build=missing \
89+
--build="*" \
9090
-c "tools.build:jobs=$CONAN_CPU_COUNT" \
9191
-o agent_prefix=mtc \
9292
-o cpack=True \

0 commit comments

Comments
 (0)