We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37913f4 commit 73a973bCopy full SHA for 73a973b
docker/ubuntu/Dockerfile
@@ -7,7 +7,7 @@ FROM ubuntu:24.04
7
ENV DEBIAN_FRONTEND=noninteractive
8
ENV VCPKG_ROOT=/opt/vcpkg
9
ENV VCPKG_FEATURE_FLAGS=manifest,binarycaching
10
-ENV VCPKG_BINARY_SOURCES="clear;x-gha,readwrite"
+ENV VCPKG_BINARY_SOURCES="clear;files,/root/.cache/vcpkg/archives,readwrite"
11
ENV PATH="${VCPKG_ROOT}:${PATH}"
12
13
RUN apt-get update && apt-get install -y \
@@ -32,4 +32,7 @@ RUN clang++ --version && g++ --version
32
RUN git clone https://github.com/microsoft/vcpkg.git ${VCPKG_ROOT}
33
RUN ${VCPKG_ROOT}/bootstrap-vcpkg.sh
34
35
+# Create the binary cache directory
36
+RUN mkdir -p /root/.cache/vcpkg/archives
37
+
38
WORKDIR /workspace
0 commit comments