mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 03:36:41 +01:00
11 lines
323 B
Docker
11 lines
323 B
Docker
FROM docker.io/library/alpine:edge
|
|
RUN apk add --no-cache \
|
|
bash tree rustup git just cloc build-base clang20-dev \
|
|
pipewire-jack-dev lilv-dev serd-dev
|
|
RUN adduser -Du1000 build
|
|
USER 1000
|
|
RUN rustup-init -y
|
|
RUN source "$HOME/.cargo/env" \
|
|
&& rustup install nightly \
|
|
&& rustup default nightly \
|
|
&& cargo version -vv
|