2024-05-10 21:30:50 -04:00
|
|
|
FROM rustlang/rust:nightly-alpine3.19 AS builder
|
|
|
|
|
2024-05-12 01:31:18 -04:00
|
|
|
RUN apk add --no-cache musl-dev pkgconf pipewire-dev
|
2024-05-10 21:30:50 -04:00
|
|
|
|
|
|
|
RUN mkdir /root/ta_waybar_pipewire
|
|
|
|
WORKDIR /root/ta_waybar_pipewire
|
|
|
|
COPY . .
|
|
|
|
# TODO: Add static build, which currently errors due to proc_macro. RUSTFLAGS="-C target-feature=+crt-static"
|
|
|
|
RUN CARGO_TARGET_DIR=/target cargo build --profile release-lto
|
|
|
|
|
|
|
|
FROM alpine:3.19 AS runner
|
|
|
|
|
|
|
|
COPY --from=builder /target/release-lto/ta_waybar_pipewire /usr/bin/
|