From 08de0caedb7dbc24a0ab7e29c60473b5a9560da4 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 21 Oct 2024 00:00:47 -0400 Subject: [PATCH] Add a missing libclang dependency for alpine 3.20 upgrade. --- docker/ta_waybar_pipewire/Dockerfile | 2 +- docker/ta_waybar_pipewire_development/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/ta_waybar_pipewire/Dockerfile b/docker/ta_waybar_pipewire/Dockerfile index 0f42cc6..115cef9 100644 --- a/docker/ta_waybar_pipewire/Dockerfile +++ b/docker/ta_waybar_pipewire/Dockerfile @@ -3,7 +3,7 @@ ARG ALPINE_VERSION="3.20" FROM rustlang/rust:nightly-alpine$ALPINE_VERSION AS builder -RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev +RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev clang17-libclang RUN mkdir /root/ta_waybar_pipewire WORKDIR /root/ta_waybar_pipewire diff --git a/docker/ta_waybar_pipewire_development/Dockerfile b/docker/ta_waybar_pipewire_development/Dockerfile index bcbac4e..3c3aa84 100644 --- a/docker/ta_waybar_pipewire_development/Dockerfile +++ b/docker/ta_waybar_pipewire_development/Dockerfile @@ -3,7 +3,7 @@ ARG ALPINE_VERSION="3.20" FROM rustlang/rust:nightly-alpine$ALPINE_VERSION AS builder -RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev +RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev clang17-libclang RUN --mount=type=tmpfs,target=/tmp --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked cargo install --locked --no-default-features --features ci-autoclean cargo-cache RUN rustup component add rustfmt RUN rustup component add clippy