From 314eda537fa1402312579963a3f5ebc3d3ba61d9 Mon Sep 17 00:00:00 2001 From: Torsten Raudssus Date: Fri, 13 Dec 2024 01:54:41 +0100 Subject: [PATCH] Adding rust compiler --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1432346..2fdb775 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 ) && \