mirror of
https://github.com/yuzu-emu/build-environments
synced 2024-11-22 16:43:43 +00:00
ccadba44f5
... other images replaced MAINTAINER with LABEL
8 lines
389 B
Docker
8 lines
389 B
Docker
FROM ubuntu:20.04
|
|
LABEL 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-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
|