From cbca75ea9554ef97f9632e432cbb5e1eca87ba09 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 20 Jul 2023 17:09:59 +0530 Subject: [PATCH] fix: install packages `wget` & `tar` too --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c6a4642..dbd4c71 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 -y +RUN USER=root apt-get update && apt-get install wget tar 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