From 4fe0ebbd8ffc9dd5dc71861170bbffcefb9562d9 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Sat, 2 May 2020 17:21:58 -0600 Subject: [PATCH] Add new system libraries and install some additional libraries through conan --- linux-fresh/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/linux-fresh/Dockerfile b/linux-fresh/Dockerfile index 3e3d56a..0e811fd 100644 --- a/linux-fresh/Dockerfile +++ b/linux-fresh/Dockerfile @@ -4,16 +4,27 @@ RUN useradd -m -s /bin/bash yuzu && \ DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y full-upgrade && \ DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ build-essential \ + libboost-all-dev \ libsdl2-dev \ libssl-dev \ + libopus-dev \ + libzstd-dev \ python \ + python3-pip \ qtbase5-dev \ qtbase5-private-dev \ qtwebengine5-dev \ libqt5opengl5-dev \ + liblz4-dev \ + zlib1g-dev \ wget \ git \ ccache \ cmake \ ninja-build && \ + pip3 install conan && \ apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log +USER yuzu +RUN conan install catch2/2.11.0@ && \ + conan install fmt/6.2.0@ && \ + conan install nlohmann_json/3.7.3@