From 45b6802f3f5cc8e71682d6c6c6073b9ddb089c19 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Tue, 19 Jul 2022 15:22:50 +0200 Subject: [PATCH] feat: add musl libc and its tools to build image (#824) # Conflicts: # focal.yaml --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index b1d535bf..11ff25ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -132,6 +132,10 @@ RUN apt-get -y update && \ libxtst6 \ libyaml-dev \ mercurial \ + # musl and musl-tools are needed for certain rust dependencies (ring) to compile correctly + # see https://github.com/netlify/pillar-runtime/issues/401 + musl \ + musl-tools \ nasm \ openjdk-8-jdk \ optipng \