From 51f655085848bded06445a11944534446e30ee78 Mon Sep 17 00:00:00 2001 From: BukiOffor <ebuka2264@yahoo.com> Date: Fri, 22 Mar 2024 15:09:30 +0100 Subject: [PATCH] removed -y flag in rust installation --- core/Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 1e602b4..bb4470b 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -1,14 +1,9 @@ FROM nikolaik/python-nodejs - - - - - WORKDIR /app -RUN curl --proto '=https' --tlsv1.2 -sSf -y https://sh.rustup.rs | sh +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ENV PATH /app/.cargo/bin:$PATH