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