From b07890cd8dc76a0dde43cd244a6329ff611ff1aa Mon Sep 17 00:00:00 2001 From: Vitor Kiguchi Date: Wed, 5 Oct 2022 18:18:12 -0300 Subject: [PATCH] linux-fresh: install qtbase5-private-dev --- linux-fresh/Dockerfile | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/linux-fresh/Dockerfile b/linux-fresh/Dockerfile index a4e6130..89c1431 100644 --- a/linux-fresh/Dockerfile +++ b/linux-fresh/Dockerfile @@ -5,4 +5,22 @@ 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 +RUN apt-get install -y \ + p7zip-full \ + build-essential \ + libsdl2-dev \ + qtbase5-dev \ + qtbase5-private-dev \ + libqt5opengl5-dev \ + qtmultimedia5-dev \ + qttools5-dev \ + qttools5-dev-tools \ + libavcodec-dev \ + libavfilter-dev \ + libavformat-dev \ + libswscale-dev \ + wget \ + git \ + ccache \ + cmake \ + ninja-build