mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
32 lines
795 B
Docker
32 lines
795 B
Docker
# syntax=docker/dockerfile:1
|
|
ARG alpine_version=alpine3.18
|
|
ARG rust_version=1.74.0
|
|
FROM rust:${rust_version}-${alpine_version}
|
|
|
|
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse"
|
|
ENV RUST_BACKTRACE=1
|
|
ENV RUSTFLAGS="-D warnings -C target-feature=-crt-static"
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
git \
|
|
nano\
|
|
openssh-server \
|
|
# for rust-analyzer vscode plugin
|
|
pkgconf \
|
|
musl-dev \
|
|
# developer dependencies
|
|
libunwind-dev \
|
|
pulseaudio-dev \
|
|
portaudio-dev \
|
|
alsa-lib-dev \
|
|
sdl2-dev \
|
|
gstreamer-dev \
|
|
gst-plugins-base-dev \
|
|
jack-dev \
|
|
avahi-dev && \
|
|
rm -rf /lib/apk/db/*
|
|
|
|
RUN rustup component add rustfmt && \
|
|
rustup component add clippy && \
|
|
cargo install cargo-hack
|