2020-04-25 02:12:02 +02:00
|
|
|
FROM ubuntu:20.04
|
2021-07-14 07:23:48 +02:00
|
|
|
LABEL maintainer="yuzu"
|
2020-05-08 04:22:08 +02:00
|
|
|
# Create a user account yuzu (UID 1027) that the container will run as
|
|
|
|
RUN useradd -m -u 1027 -s /bin/bash yuzu && \
|
2020-05-01 06:39:10 +02:00
|
|
|
apt-get update && apt-get -y full-upgrade && \
|
2021-09-24 21:49:22 +02:00
|
|
|
apt-get install -y git clang-format-12 && \
|
2020-05-01 06:39:10 +02:00
|
|
|
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
2020-05-08 04:22:08 +02:00
|
|
|
USER 1027
|