From d9e36ad5dad733a7d29428da644220cc3fb6d41d Mon Sep 17 00:00:00 2001 From: Pete Rodriguez Date: Tue, 25 Aug 2026 07:33:58 -0500 Subject: [PATCH] Set PIP_INDEX_URL in Dockerfile Add Microsoft PIP index URL for package installation --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3984251..9c5fef8 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,7 +8,8 @@ FROM mcr.microsoft.com/devcontainers/python:1-3.13-bookworm ENV DEBIAN_FRONTEND=noninteractive \ PIP_DISABLE_PIP_VERSION_CHECK=1 \ - PIP_NO_CACHE_DIR=1 + PIP_NO_CACHE_DIR=1 \ + PIP_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple # System tools we use across labs: curl (already present), jq (parsing outputs), # git (already present), zip/unzip (bundling artifacts).