Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
snoandpetals authored Mar 9, 2024
1 parent c5b9f31 commit ab96c10
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions linux-fresh/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM ubuntu:20.04
LABEL maintainer="yuzu"

ENV BOOST_VER=1_80_0
ENV BOOST_VER_PERIOD=1.80.0
ENV CLANG_VER=14
ENV CMAKE_VER=3.22.6
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -104,10 +105,10 @@ RUN cd /tmp && \

# Install Boost from yuzu-emu/ext-linux-bin
RUN cd /tmp && \
wget --no-verbose https://sourceforge.net/projects/boost/files/boost/1.80.0/boost_1_80_0.tar.gz/download && \
tar xvf boost-${BOOST_VER}.tar.xz && \
chown -R root:root boost-${BOOST_VER}/ && \
cp -rv boost-${BOOST_VER}/usr / && \
wget --no-verbose https://sourceforge.net/projects/boost/files/boost/${BOOST_VER_PERIOD}/boost_${BOOST_VER}.tar.gz/download && \
tar xvf boost_${BOOST_VER}.tar.gz && \
chown -R root:root boost_${BOOST_VER}/ && \
cp -rv boost_${BOOST_VER}/usr / && \
rm -rf boost*

# Install GCC from yuzu-emu/ext-linux-bin
Expand Down

0 comments on commit ab96c10

Please sign in to comment.