Merge pull request #16 from lioncash/clang

clang-format: Correct package name
This commit is contained in:
bunnei 2020-08-11 23:06:25 -04:00 committed by GitHub
commit 7dba201b19
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 # Create a user account yuzu (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash yuzu && \ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
apt-get update && apt-get -y full-upgrade && \ apt-get update && apt-get -y full-upgrade && \
apt-get install -y git clang-format-10.0 && \ apt-get install -y git clang-format-10 && \
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
USER 1027 USER 1027