fix: debian bookworm build

This commit is contained in:
2024-11-20 20:53:20 +00:00
parent bb11e998e7
commit 8f7c47d4fe
9 changed files with 83 additions and 26 deletions

15
Dockerfile.bookworm Normal file
View File

@ -0,0 +1,15 @@
FROM rust:bookworm
WORKDIR /src
COPY . .
RUN apt update && apt install -y \
build-essential \
libavcodec-dev \
libavformat-dev \
libavutil-dev \
libavdevice-dev \
libswresample-dev \
libswscale-dev \
libpipewire-0.3-dev \
libasound2-dev \
libclang-dev
RUN cargo build --release