From 0cc2845bf88ad262109aa04a32409247fdcf1a02 Mon Sep 17 00:00:00 2001 From: Alex Allmont Date: Wed, 20 Nov 2024 16:59:42 +0000 Subject: [PATCH] build: set devcontainer VCPKG_ROOT instead of amending to PATH (#148) --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3cbc183e..ef5e21c5 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -45,7 +45,7 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then \ # Install vcpkg in checkout location RUN git clone https://github.com/Microsoft/vcpkg.git /tools/vcpkg RUN /tools/vcpkg/bootstrap-vcpkg.sh -ENV PATH /tools/vcpkg:$PATH +ENV VCPKG_ROOT=/tools/vcpkg # This is required to be able to run pytest in the VSCode terminal ENV PYTHONPATH=. \ No newline at end of file