From 9ee3f95fa9fb6220a17a864355951826e146dff8 Mon Sep 17 00:00:00 2001 From: ameerj <52414509+ameerj@users.noreply.github.com> Date: Fri, 24 Sep 2021 15:49:22 -0400 Subject: [PATCH] linux-clang-format: Update to clang-format-12 --- linux-clang-format/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-clang-format/Dockerfile b/linux-clang-format/Dockerfile index 57f5f6a..028b0c0 100644 --- a/linux-clang-format/Dockerfile +++ b/linux-clang-format/Dockerfile @@ -3,6 +3,6 @@ MAINTAINER yuzu # Create a user account yuzu (UID 1027) that the container will run as RUN useradd -m -u 1027 -s /bin/bash yuzu && \ apt-get update && apt-get -y full-upgrade && \ - apt-get install -y git clang-format-10 && \ + apt-get install -y git clang-format-12 && \ apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log USER 1027