From fb19cad0f56780463756f5ef7fc0ee6e2d204886 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Thu, 20 Jul 2023 17:04:24 +0530 Subject: [PATCH] fix: install required build dependencies --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e08493a..a6fd9c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,8 @@ RUN cargo build --release # Copy the binary into a new container for a smaller docker image FROM debian:buster-slim +RUN sudo apt install build-essential + RUN wget -4c https://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz RUN tar -zxvf glibc-2.29.tar.gz RUN cd glibc-2.29