Files
ta_waybar_pipewire/docker/ta_waybar_pipewire_development/Dockerfile

10 lines
428 B
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
ARG ALPINE_VERSION="3.20"
FROM rustlang/rust:nightly-alpine$ALPINE_VERSION AS builder
2024-05-10 21:30:50 -04:00
2024-05-12 01:34:24 -04:00
RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev
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
2024-05-10 21:30:50 -04:00
RUN rustup component add rustfmt
RUN rustup component add clippy