summaryrefslogtreecommitdiff
path: root/automation/taskcluster/docker-clang-format/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'automation/taskcluster/docker-clang-format/Dockerfile')
-rw-r--r--automation/taskcluster/docker-clang-format/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/automation/taskcluster/docker-clang-format/Dockerfile b/automation/taskcluster/docker-clang-format/Dockerfile
index c9f8b8b0e..8ef4bb075 100644
--- a/automation/taskcluster/docker-clang-format/Dockerfile
+++ b/automation/taskcluster/docker-clang-format/Dockerfile
@@ -1,18 +1,18 @@
-# Minimal image with clang-format 3.9.
+# Minimal image with clang-format 10
FROM ubuntu:18.04
LABEL maintainer="Martin Thomson <martin.thomson@gmail.com>"
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
- clang-format-3.9 \
+ clang-format-10 \
locales \
mercurial \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get autoremove -y && apt-get clean -y
RUN update-alternatives --install /usr/bin/clang-format \
- clang-format $(which clang-format-3.9) 10
+ clang-format $(which clang-format-10) 10
ENV SHELL /bin/bash
ENV USER worker