Update Dockerfile

downgrade pip
This commit is contained in:
qurious-pixel 2020-07-21 12:30:28 -07:00 committed by GitHub
parent c2b17268e6
commit 7032593f6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
libzstd-dev \ libzstd-dev \
zlib1g-dev \ zlib1g-dev \
python \ python \
python3-pip \ python-pip \
qtbase5-dev \ qtbase5-dev \
qtbase5-private-dev \ qtbase5-private-dev \
qttools5-dev \ qttools5-dev \
@ -26,7 +26,7 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && \
ccache \ ccache \
cmake \ cmake \
ninja-build && \ ninja-build && \
pip3 install conan && \ pip install conan && \
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
USER 1027 USER 1027
RUN conan install catch2/2.11.0@ -s compiler.libcxx=libstdc++11 --build=missing && \ RUN conan install catch2/2.11.0@ -s compiler.libcxx=libstdc++11 --build=missing && \