You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
481 B
8 lines
481 B
FROM ubuntu:22.04
|
|
LABEL maintainer="citraemu"
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Create a user account citra (UID 1027) that the container will run as
|
|
RUN useradd -m -u 1027 -s /bin/bash citra
|
|
RUN apt-get update && apt-get -y full-upgrade
|
|
RUN apt-get install -y p7zip-full build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev qttools5-dev qttools5-dev-tools libavcodec-dev libavfilter-dev libavformat-dev libswscale-dev wget git ccache cmake ninja-build
|