From a12cbb4345d2fc42414daf823c2525830e583082 Mon Sep 17 00:00:00 2001 From: Bhargav Kowshik Date: Fri, 13 Dec 2024 23:19:09 +0530 Subject: [PATCH] Install gcc before other package installations --- docker/dot/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/dot/Dockerfile b/docker/dot/Dockerfile index 686e1f4..b22597a 100644 --- a/docker/dot/Dockerfile +++ b/docker/dot/Dockerfile @@ -6,6 +6,8 @@ RUN apt-get update RUN pip install --upgrade pip +RUN apt-get update && apt-get install -y gcc build-essential + # This uses the requirements as defined in the dot directory COPY ./dot/requirements_dot.txt requirements_dot.txt COPY ./dot/install_dot.sh install_dot.sh