build-environments/linux-clang-format/Dockerfile
Lioncash 0df903547c clang-format: Correct package name
The actual package itself has dropped the use of the decimal in the
version number.
2020-08-08 20:19:03 -04:00

9 lines
381 B
Docker

FROM ubuntu:20.04
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 clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
USER 1027