1
0
Fork 0

Merge branch 'master' into log-rewrite

This commit is contained in:
Exynox 2024-03-03 18:59:23 +02:00
commit 0aab8162fb
1 changed files with 4 additions and 1 deletions

View File

@ -3,9 +3,12 @@ WORKDIR /app
# Update the system and install various dependencies
RUN apt-get update && \
apt-get install -y git cmake build-essential tar curl zip unzip pkg-config autoconf python3 \
apt-get install -y git cmake ninja-build build-essential tar curl zip unzip pkg-config autoconf python3 \
libdevil-dev libncurses5-dev libbsd-dev
# Arm specific
ENV VCPKG_FORCE_SYSTEM_BINARIES=1
# Install vcpkg and the required libraries
RUN git clone https://github.com/Microsoft/vcpkg.git
RUN bash ./vcpkg/bootstrap-vcpkg.sh