Merge pull request #58 from lat9nq/fresh-control-vcpkg
fresh: Specify vcpkg version
This commit is contained in:
commit
9eecf6cdfc
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
|
||||||
ENV GCC_VER=11.3.0
|
ENV GCC_VER=11.3.0
|
||||||
ENV QT_PKG_VER=515
|
ENV QT_PKG_VER=515
|
||||||
ENV QT_VER=5.15.2
|
ENV QT_VER=5.15.2
|
||||||
|
ENV VCPKG_VER=2022.07.25
|
||||||
ENV UBUNTU_VER=bionic
|
ENV UBUNTU_VER=bionic
|
||||||
|
|
||||||
# Create a user account yuzu (UID 1027) that the container will run as
|
# Create a user account yuzu (UID 1027) that the container will run as
|
||||||
|
@ -146,7 +147,7 @@ USER 1027
|
||||||
COPY --chown=yuzu:yuzu settings.yml /home/yuzu/.conan/settings.yml
|
COPY --chown=yuzu:yuzu settings.yml /home/yuzu/.conan/settings.yml
|
||||||
# Install vcpkg and required dependencies for yuzu
|
# Install vcpkg and required dependencies for yuzu
|
||||||
RUN cd /home/yuzu &&\
|
RUN cd /home/yuzu &&\
|
||||||
git clone --depth 1 https://github.com/Microsoft/vcpkg.git &&\
|
git clone --depth 1 --branch ${VCPKG_VER} https://github.com/Microsoft/vcpkg.git &&\
|
||||||
cd vcpkg &&\
|
cd vcpkg &&\
|
||||||
./bootstrap-vcpkg.sh &&\
|
./bootstrap-vcpkg.sh &&\
|
||||||
./vcpkg install \
|
./vcpkg install \
|
||||||
|
|
Loading…
Reference in a new issue