Merge pull request #40 from ameerj/clang-format-12

linux-clang-format: Update to clang-format-12
This commit is contained in:
bunnei 2021-09-24 13:01:31 -07:00 committed by GitHub
commit 402baf3e42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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