From 6af9d87258ccc256d1ba6d3eea2a8cc4a11a7194 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Mon, 7 Jun 2021 13:46:29 +0200 Subject: [PATCH] Toolchain: Add `ccache` to Dockerfile Following up on 2d38d56e, we were missing this in our Dockerfile. --- Toolchain/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Toolchain/Dockerfile b/Toolchain/Dockerfile index 2790793b24..66ff085fa2 100644 --- a/Toolchain/Dockerfile +++ b/Toolchain/Dockerfile @@ -5,6 +5,7 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update -y \ && apt-get install -y \ build-essential \ + ccache \ cmake \ curl \ genext2fs \