mirror of
https://github.com/azahar-emu/build-environment
synced 2025-11-07 07:30:01 +01:00
* linux-flatpak: slim down the image * meta: conform to new Dockerfile standard * meta: use regular user as possible
7 lines
181 B
Docker
7 lines
181 B
Docker
FROM ubuntu:18.04
|
|
LABEL maintainer="citraemu"
|
|
RUN useradd -m -s /bin/bash citra
|
|
RUN apt-get update && apt-get -y full-upgrade
|
|
RUN apt-get install -y git clang-format-6.0
|
|
USER citra
|