From 4cdc4e36d5605a53058fd04a00498a2c1c4a1a8c Mon Sep 17 00:00:00 2001 From: SomesH S Date: Mon, 27 May 2024 15:23:53 +0000 Subject: [PATCH] add -y to apt install steps --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9551b08..ac8ed67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,10 @@ RUN yarn produce FROM mongo:latest as fs RUN apt update && \ - apt install curl && \ + apt install -y curl && \ curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh && \ bash nodesource_setup.sh && \ - apt install nodejs && \ + apt install -y nodejs && \ corepack enable COPY --from=sssomeshhh/rentify:fe /root/fe/build /root/fe/build COPY --from=sssomeshhh/rentify:be /root/be /root/be