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.
7 lines
518 B
7 lines
518 B
FROM ubuntu:18.04
|
|
MAINTAINER citra
|
|
RUN useradd -m -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 wget git ccache cmake flatpak flatpak-builder ca-certificates sshfs curl fuse dnsutils gnupg2
|
|
RUN flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
RUN flatpak install -y flathub org.kde.Platform//5.12 org.kde.Sdk//5.12
|