Adding rust compiler

This commit is contained in:
Torsten Raudssus 2024-12-13 01:54:41 +01:00
parent a6d80aaa6d
commit 314eda537f

View file

@ -11,7 +11,7 @@ ENV SRV_APT_GET_INSTALL $SRV_APT_GET_INSTALL
ENV PATH="/app/.local/bin:${PATH}"
RUN apt-get update -y && apt-get install -y jq $SRV_APT_GET_INSTALL \
RUN apt-get update -y && apt-get install -y jq rustc cargo $SRV_APT_GET_INSTALL \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN ( id -g $SRV_GID || groupadd -g $SRV_GID srv ) && \