From 80e15fe45e1286d5633f29c5739c9076e2f2852d Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 20 Jul 2023 17:08:57 +0530 Subject: [PATCH] fix: `-y` for build dependencies install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d0894e..c6a4642 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN cargo build --release # Copy the binary into a new container for a smaller docker image FROM debian:buster-slim -RUN USER=root apt-get update && apt-get install build-essential +RUN USER=root apt-get update && apt-get install build-essential -y RUN wget -4c https://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz RUN tar -zxvf glibc-2.29.tar.gz