From 25040824cf604c222a6f258bd73ebcfebedb71f4 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Thu, 3 Jan 2019 12:42:06 +0200 Subject: [PATCH] tools: toolchain: install ccache Not strictly necessary, but often useful to reduce rebuild times. The user will need to bind-mount a populated cache. --- tools/toolchain/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/toolchain/Dockerfile b/tools/toolchain/Dockerfile index 21b5ca8466..7f66bae35d 100644 --- a/tools/toolchain/Dockerfile +++ b/tools/toolchain/Dockerfile @@ -3,4 +3,5 @@ ADD ./install-dependencies.sh ./ ADD ./seastar/install-dependencies.sh ./seastar/ RUN dnf -y install 'dnf-command(copr)' \ && dnf -y copr enable scylladb/toolchain \ + && dnf -y install ccache \ && /bin/bash -x ./install-dependencies.sh && dnf -y update