From 81b70fe08daf241e13accd4e1082c3ccafd4bd85 Mon Sep 17 00:00:00 2001 From: Victor Frazao Date: Mon, 15 Mar 2021 23:10:34 -0400 Subject: [PATCH] Adds build-essential to API container - need this for rust executor --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index fd261bd..6f2ef37 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -5,7 +5,7 @@ RUN for i in $(seq 1001 1500); do \ useradd -M runner$i -g $i -u $i ; \ done RUN apt-get update && \ - apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils && \ + apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils build-essential && \ rm -rf /var/lib/apt/lists/* ENV NODE_ENV=production