# Versions
ARG JEMALLOC_VERSION=5.2.1
-ARG MASS_VERSION=0.0.60
+ARG MASS_VERSION=0.0.61
# Base system
WORKDIR /tmp
# change workdir back to /tmp
&& cd /tmp
-# build orjson
+# dependencies for orjson
ENV RUSTFLAGS "-C target-feature=-crt-static"
RUN wget -O rustup.sh https://sh.rustup.rs \
&& sh rustup.sh -y \
&& cp $HOME/.cargo/bin/* /usr/local/bin \
&& rustup install nightly \
- && rustup default nightly \
- && pip install orjson
+ && rustup default nightly
# install uvloop and music assistant
RUN pip install --upgrade uvloop music-assistant==${MASS_VERSION}