diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index ac941fe..8f3d3d9 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -1,7 +1,7 @@ FROM docker.io/rust:bookworm RUN apt-get update && apt-get upgrade -y -RUN apt-get install -y g++-arm-linux-gnueabihf libc6-dev-armhf-cross +RUN apt-get install -y g++-arm-linux-gnueabihf libc6-dev-armhf-cross libclang-dev # Uncomment if you need to add more build dependencies to the image: # RUN apt-get install -y diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 7a11208..1978241 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,7 +1,7 @@ FROM docker.io/rust:bookworm RUN apt-get update && apt-get upgrade -y -RUN apt-get install -y g++-aarch64-linux-gnu libc6-dev-arm64-cross +RUN apt-get install -y g++-aarch64-linux-gnu libc6-dev-arm64-cross libclang-dev # Uncomment if you need to add more build dependencies to the image: # RUN apt-get install -y diff --git a/Dockerfile.i386 b/Dockerfile.i386 index 7ebd31f..9418253 100644 --- a/Dockerfile.i386 +++ b/Dockerfile.i386 @@ -1,6 +1,7 @@ FROM docker.io/rust:bookworm RUN apt-get update && apt-get upgrade -y +RUN apt-get install -y libclang-dev # Uncomment if you need to add more build dependencies to the image: # RUN apt-get install -y