From 7cbbe50f9b2d5751938caa7adf8a8ca6a14272b7 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 1 Jun 2026 08:28:33 -0700 Subject: [PATCH] fix: avoid aiohttp source builds in docker --- Dockerfile | 1 + Dockerfile.multistage | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4c3ea102..5d68df9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,7 @@ ENV TZ=UTC \ PYTHONIOENCODING=UTF-8 \ PYTHONUNBUFFERED=1 \ PIP_DISABLE_PIP_VERSION_CHECK=1 \ + PIP_ONLY_BINARY=aiohttp \ npm_config_loglevel=error # Language Version config diff --git a/Dockerfile.multistage b/Dockerfile.multistage index 480a8576..3825f6d2 100644 --- a/Dockerfile.multistage +++ b/Dockerfile.multistage @@ -38,6 +38,7 @@ ENV TZ=UTC \ PYTHONIOENCODING=UTF-8 \ PYTHONUNBUFFERED=1 \ PIP_DISABLE_PIP_VERSION_CHECK=1 \ + PIP_ONLY_BINARY=aiohttp \ npm_config_loglevel=error ENV PYTHON_VERSION=3.13 \